
    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_e34b50596b826010f9fae463.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_3b4945b09c6b40011fc5a273.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_02ce3df3376e0732929f7de3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6b4c07697c83f210aff41ac7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_a2a982d0137ecbf783246f77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_09728dd290d13531dac8e72a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940430;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;}
.ls5{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.460200px;}
.ls14{letter-spacing:-0.354000px;}
.ls11{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106560px;}
.ls2{letter-spacing:0.119520px;}
.lsc{letter-spacing:0.135360px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.189360px;}
.ls15{letter-spacing:0.189600px;}
.ls16{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.365760px;}
.ls18{letter-spacing:11.466720px;}
.ls8{letter-spacing:40.986720px;}
.ls17{letter-spacing:41.682720px;}
.ls7{letter-spacing:44.562720px;}
.ls6{letter-spacing:46.002720px;}
.lsa{letter-spacing:64.002720px;}
.ls9{letter-spacing:64.026720px;}
.ls3{letter-spacing:636.840000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.129600px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.586000px;}
.ws9{word-spacing:-14.479800px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._5{margin-left:-6.742080px;}
._14{margin-left:-5.647200px;}
._8{margin-left:-4.273920px;}
._9{margin-left:-2.416800px;}
._2{margin-left:-1.321920px;}
._1{width:1.290720px;}
._3{width:2.923680px;}
._7{width:4.500000px;}
._c{width:6.449280px;}
._b{width:7.828560px;}
._a{width:9.083520px;}
._11{width:10.242960px;}
._12{width:11.410080px;}
._f{width:12.454080px;}
._10{width:13.864320px;}
._15{width:15.948480px;}
._d{width:17.892240px;}
._e{width:19.123200px;}
._13{width:20.225280px;}
._6{width:136.122000px;}
._4{width:748.236000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(31,55,99);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.240000px;}
.yf0{bottom:11.160000px;}
.y7e{bottom:11.700000px;}
.yee{bottom:20.340000px;}
.y7f{bottom:20.385000px;}
.y77{bottom:20.520000px;}
.yf3{bottom:20.550000px;}
.yc{bottom:36.720000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y75{bottom:119.556000px;}
.ydd{bottom:121.356000px;}
.y10b{bottom:126.036000px;}
.y74{bottom:136.836000px;}
.ya8{bottom:137.376000px;}
.ydc{bottom:139.716000px;}
.y10a{bottom:143.316000px;}
.y3f{bottom:144.396000px;}
.y73{bottom:154.110000px;}
.ya7{bottom:154.470000px;}
.ydb{bottom:158.070000px;}
.y109{bottom:160.410000px;}
.y3e{bottom:161.670000px;}
.y72{bottom:171.390000px;}
.ya6{bottom:172.830000px;}
.yda{bottom:176.430000px;}
.y108{bottom:177.690000px;}
.y3d{bottom:178.950000px;}
.y71{bottom:188.490000px;}
.ya5{bottom:190.110000px;}
.yd9{bottom:193.710000px;}
.y107{bottom:194.970000px;}
.y3c{bottom:196.050000px;}
.y70{bottom:205.770000px;}
.ya4{bottom:207.390000px;}
.yd8{bottom:210.810000px;}
.y106{bottom:212.250000px;}
.y3b{bottom:213.330000px;}
.y6f{bottom:223.050000px;}
.ya3{bottom:225.750000px;}
.yd7{bottom:228.090000px;}
.y105{bottom:229.530000px;}
.y3a{bottom:230.610000px;}
.y6e{bottom:240.330000px;}
.ya2{bottom:243.030000px;}
.yd6{bottom:245.370000px;}
.y104{bottom:246.810000px;}
.y39{bottom:247.890000px;}
.y6d{bottom:257.610000px;}
.ya1{bottom:261.210000px;}
.yd5{bottom:263.730000px;}
.y103{bottom:263.910000px;}
.y38{bottom:265.170000px;}
.y6c{bottom:274.890000px;}
.ya0{bottom:278.490000px;}
.y102{bottom:281.190000px;}
.yd4{bottom:282.090000px;}
.y37{bottom:282.450000px;}
.y6b{bottom:291.990000px;}
.y9f{bottom:296.850000px;}
.y101{bottom:298.470000px;}
.y36{bottom:299.550000px;}
.yd3{bottom:300.270000px;}
.y6a{bottom:309.270000px;}
.y9e{bottom:314.130000px;}
.y100{bottom:315.750000px;}
.y35{bottom:316.830000px;}
.yd2{bottom:318.630000px;}
.y69{bottom:326.550000px;}
.y9d{bottom:332.490000px;}
.yff{bottom:333.030000px;}
.y34{bottom:334.110000px;}
.yd1{bottom:335.910000px;}
.y68{bottom:343.875000px;}
.y9c{bottom:349.635000px;}
.y33{bottom:351.435000px;}
.yd0{bottom:353.235000px;}
.y67{bottom:361.155000px;}
.y9b{bottom:367.995000px;}
.y32{bottom:368.715000px;}
.yfe{bottom:369.615000px;}
.ycf{bottom:371.595000px;}
.y66{bottom:378.255000px;}
.y31{bottom:385.995000px;}
.y9a{bottom:386.355000px;}
.yfd{bottom:386.895000px;}
.yce{bottom:389.955000px;}
.y65{bottom:395.535000px;}
.y30{bottom:403.095000px;}
.y99{bottom:404.715000px;}
.yfc{bottom:405.255000px;}
.ycd{bottom:407.235000px;}
.y64{bottom:412.815000px;}
.y2f{bottom:420.375000px;}
.y98{bottom:421.995000px;}
.yfb{bottom:423.615000px;}
.ycc{bottom:424.695000px;}
.y63{bottom:430.095000px;}
.y2e{bottom:437.655000px;}
.y97{bottom:440.175000px;}
.ycb{bottom:441.975000px;}
.y62{bottom:447.375000px;}
.y2d{bottom:454.935000px;}
.y96{bottom:458.535000px;}
.yfa{bottom:459.075000px;}
.yca{bottom:459.255000px;}
.y61{bottom:464.655000px;}
.y2c{bottom:474.375000px;}
.y95{bottom:475.815000px;}
.yf9{bottom:476.355000px;}
.yc9{bottom:476.535000px;}
.y60{bottom:481.755000px;}
.y2b{bottom:491.655000px;}
.y94{bottom:493.095000px;}
.yc8{bottom:493.635000px;}
.y5f{bottom:499.035000px;}
.y2a{bottom:508.935000px;}
.y93{bottom:510.375000px;}
.yc7{bottom:510.915000px;}
.yf8{bottom:511.995000px;}
.y5e{bottom:516.315000px;}
.y29{bottom:526.215000px;}
.y92{bottom:527.655000px;}
.yc6{bottom:528.195000px;}
.yf7{bottom:530.355000px;}
.y5d{bottom:533.595000px;}
.y28{bottom:543.315000px;}
.y91{bottom:544.755000px;}
.yc5{bottom:545.475000px;}
.yf6{bottom:548.535000px;}
.y5c{bottom:550.875000px;}
.y27{bottom:560.595000px;}
.y90{bottom:562.035000px;}
.yc4{bottom:562.755000px;}
.yf5{bottom:565.815000px;}
.y5b{bottom:568.155000px;}
.y26{bottom:577.875000px;}
.y8f{bottom:579.315000px;}
.yc3{bottom:579.855000px;}
.yf4{bottom:583.095000px;}
.y5a{bottom:585.255000px;}
.y25{bottom:595.155000px;}
.y8e{bottom:596.595000px;}
.yc2{bottom:597.135000px;}
.yf2{bottom:597.855000px;}
.y59{bottom:602.535000px;}
.y24{bottom:612.465000px;}
.y8d{bottom:613.905000px;}
.yc1{bottom:615.525000px;}
.y58{bottom:619.845000px;}
.y23{bottom:629.745000px;}
.y8c{bottom:631.185000px;}
.yf1{bottom:633.165000px;}
.yc0{bottom:633.885000px;}
.y57{bottom:637.125000px;}
.y22{bottom:646.845000px;}
.y8b{bottom:648.285000px;}
.ybf{bottom:651.165000px;}
.y56{bottom:654.405000px;}
.y21{bottom:664.125000px;}
.y8a{bottom:665.565000px;}
.ybe{bottom:668.445000px;}
.yef{bottom:669.165000px;}
.y55{bottom:671.685000px;}
.y20{bottom:681.405000px;}
.y89{bottom:682.845000px;}
.ybd{bottom:685.545000px;}
.y54{bottom:688.785000px;}
.yed{bottom:695.085000px;}
.y1f{bottom:698.685000px;}
.y88{bottom:700.125000px;}
.ybc{bottom:702.825000px;}
.y53{bottom:706.065000px;}
.y1e{bottom:715.965000px;}
.y87{bottom:717.405000px;}
.ybb{bottom:720.105000px;}
.y52{bottom:723.345000px;}
.yec{bottom:730.185000px;}
.y1d{bottom:733.245000px;}
.y86{bottom:734.505000px;}
.yba{bottom:737.385000px;}
.y51{bottom:740.625000px;}
.y1c{bottom:750.345000px;}
.yeb{bottom:751.425000px;}
.y85{bottom:751.785000px;}
.yb9{bottom:754.665000px;}
.y50{bottom:757.905000px;}
.y1b{bottom:767.625000px;}
.yea{bottom:768.705000px;}
.y84{bottom:769.065000px;}
.yb8{bottom:771.945000px;}
.y4f{bottom:775.005000px;}
.y1a{bottom:784.905000px;}
.ye9{bottom:785.985000px;}
.y83{bottom:786.345000px;}
.yb7{bottom:789.045000px;}
.y4e{bottom:792.285000px;}
.ye8{bottom:803.265000px;}
.y82{bottom:803.625000px;}
.y19{bottom:804.345000px;}
.yb6{bottom:806.325000px;}
.y4d{bottom:809.565000px;}
.ye7{bottom:820.545000px;}
.y81{bottom:820.905000px;}
.y18{bottom:822.165000px;}
.yb5{bottom:823.605000px;}
.y4c{bottom:826.845000px;}
.y80{bottom:835.665000px;}
.ye6{bottom:837.825000px;}
.yb4{bottom:840.885000px;}
.y17{bottom:841.065000px;}
.y4b{bottom:844.125000px;}
.ye5{bottom:852.585000px;}
.y7d{bottom:853.665000px;}
.yb3{bottom:858.165000px;}
.y16{bottom:859.965000px;}
.y4a{bottom:861.405000px;}
.ye4{bottom:870.630000px;}
.yb2{bottom:875.310000px;}
.y49{bottom:878.550000px;}
.y15{bottom:879.090000px;}
.ye3{bottom:888.630000px;}
.y7c{bottom:888.810000px;}
.yb1{bottom:892.590000px;}
.y48{bottom:895.830000px;}
.y14{bottom:897.990000px;}
.ye2{bottom:906.630000px;}
.y7b{bottom:906.810000px;}
.yb0{bottom:909.870000px;}
.y47{bottom:913.110000px;}
.y13{bottom:917.070000px;}
.ye1{bottom:924.630000px;}
.yaf{bottom:927.150000px;}
.y46{bottom:930.390000px;}
.y12{bottom:935.970000px;}
.y7a{bottom:942.090000px;}
.ye0{bottom:942.630000px;}
.yae{bottom:945.510000px;}
.y45{bottom:947.670000px;}
.y11{bottom:954.870000px;}
.y79{bottom:960.090000px;}
.yad{bottom:962.790000px;}
.ydf{bottom:963.870000px;}
.y44{bottom:964.950000px;}
.y10{bottom:973.950000px;}
.yac{bottom:979.890000px;}
.yde{bottom:980.970000px;}
.y43{bottom:982.050000px;}
.yf{bottom:992.490000px;}
.y76{bottom:995.370000px;}
.yab{bottom:998.250000px;}
.y42{bottom:999.330000px;}
.ye{bottom:1010.490000px;}
.yaa{bottom:1015.530000px;}
.y41{bottom:1016.610000px;}
.yd{bottom:1031.190000px;}
.ya9{bottom:1032.810000px;}
.y40{bottom:1033.890000px;}
.y9{bottom:1052.430000px;}
.y8{bottom:1070.970000px;}
.y7{bottom:1086.810000px;}
.y6{bottom:1104.810000px;}
.y5{bottom:1121.550000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hd{height:17.100000px;}
.hb{height:17.280000px;}
.h12{height:25.200000px;}
.h11{height:34.380000px;}
.hc{height:34.416000px;}
.ha{height:34.560000px;}
.h13{height:34.596000px;}
.h6{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.h10{height:43.302656px;}
.h9{height:43.506914px;}
.he{height:45.753750px;}
.h8{height:46.736719px;}
.h3{height:47.901094px;}
.hf{height:50.364141px;}
.h4{height:50.800781px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:174.450000px;}
.w9{width:174.600000px;}
.w8{width:174.630000px;}
.w4{width:249.330000px;}
.w3{width:249.510000px;}
.w5{width:249.555000px;}
.w6{width:349.950000px;}
.w7{width:349.995000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1{left:108.035987px;}
.x2{left:135.755987px;}
.x21{left:146.154000px;}
.x23{left:148.674000px;}
.x22{left:155.694000px;}
.x11{left:162.029987px;}
.xb{left:168.869987px;}
.x4{left:171.029987px;}
.x7{left:187.229987px;}
.x17{left:214.409987px;}
.x18{left:216.029987px;}
.xe{left:252.569987px;}
.xa{left:285.014987px;}
.x12{left:315.974987px;}
.x24{left:326.414987px;}
.x20{left:330.914987px;}
.x1c{left:332.714987px;}
.x1b{left:346.754987px;}
.xc{left:350.894987px;}
.x14{left:358.995000px;}
.x1f{left:369.074987px;}
.x1d{left:377.354987px;}
.xf{left:380.594987px;}
.x16{left:396.974987px;}
.x10{left:399.134987px;}
.xd{left:402.734987px;}
.x6{left:409.034987px;}
.x26{left:410.834987px;}
.x9{left:415.694987px;}
.x5{left:424.874987px;}
.x19{left:454.214987px;}
.x8{left:459.074987px;}
.x1a{left:482.324987px;}
.x1e{left:486.104987px;}
.x3{left:531.104987px;}
.x15{left:609.045000px;}
.x25{left:634.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls14{letter-spacing:-0.314667pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094720pt;}
.ls2{letter-spacing:0.106240pt;}
.lsc{letter-spacing:0.120320pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.168320pt;}
.ls15{letter-spacing:0.168533pt;}
.ls16{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.325120pt;}
.ls18{letter-spacing:10.192640pt;}
.ls8{letter-spacing:36.432640pt;}
.ls17{letter-spacing:37.051307pt;}
.ls7{letter-spacing:39.611307pt;}
.ls6{letter-spacing:40.891307pt;}
.lsa{letter-spacing:56.891307pt;}
.ls9{letter-spacing:56.912640pt;}
.ls3{letter-spacing:566.080000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.448533pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.965333pt;}
.ws9{word-spacing:-12.870933pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._5{margin-left:-5.992960pt;}
._14{margin-left:-5.019733pt;}
._8{margin-left:-3.799040pt;}
._9{margin-left:-2.148267pt;}
._2{margin-left:-1.175040pt;}
._1{width:1.147307pt;}
._3{width:2.598827pt;}
._7{width:4.000000pt;}
._c{width:5.732693pt;}
._b{width:6.958720pt;}
._a{width:8.074240pt;}
._11{width:9.104853pt;}
._12{width:10.142293pt;}
._f{width:11.070293pt;}
._10{width:12.323840pt;}
._15{width:14.176427pt;}
._d{width:15.904213pt;}
._e{width:16.998400pt;}
._13{width:17.978027pt;}
._6{width:120.997333pt;}
._4{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.880000pt;}
.yf0{bottom:9.920000pt;}
.y7e{bottom:10.400000pt;}
.yee{bottom:18.080000pt;}
.y7f{bottom:18.120000pt;}
.y77{bottom:18.240000pt;}
.yf3{bottom:18.266667pt;}
.yc{bottom:32.640000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y75{bottom:106.272000pt;}
.ydd{bottom:107.872000pt;}
.y10b{bottom:112.032000pt;}
.y74{bottom:121.632000pt;}
.ya8{bottom:122.112000pt;}
.ydc{bottom:124.192000pt;}
.y10a{bottom:127.392000pt;}
.y3f{bottom:128.352000pt;}
.y73{bottom:136.986667pt;}
.ya7{bottom:137.306667pt;}
.ydb{bottom:140.506667pt;}
.y109{bottom:142.586667pt;}
.y3e{bottom:143.706667pt;}
.y72{bottom:152.346667pt;}
.ya6{bottom:153.626667pt;}
.yda{bottom:156.826667pt;}
.y108{bottom:157.946667pt;}
.y3d{bottom:159.066667pt;}
.y71{bottom:167.546667pt;}
.ya5{bottom:168.986667pt;}
.yd9{bottom:172.186667pt;}
.y107{bottom:173.306667pt;}
.y3c{bottom:174.266667pt;}
.y70{bottom:182.906667pt;}
.ya4{bottom:184.346667pt;}
.yd8{bottom:187.386667pt;}
.y106{bottom:188.666667pt;}
.y3b{bottom:189.626667pt;}
.y6f{bottom:198.266667pt;}
.ya3{bottom:200.666667pt;}
.yd7{bottom:202.746667pt;}
.y105{bottom:204.026667pt;}
.y3a{bottom:204.986667pt;}
.y6e{bottom:213.626667pt;}
.ya2{bottom:216.026667pt;}
.yd6{bottom:218.106667pt;}
.y104{bottom:219.386667pt;}
.y39{bottom:220.346667pt;}
.y6d{bottom:228.986667pt;}
.ya1{bottom:232.186667pt;}
.yd5{bottom:234.426667pt;}
.y103{bottom:234.586667pt;}
.y38{bottom:235.706667pt;}
.y6c{bottom:244.346667pt;}
.ya0{bottom:247.546667pt;}
.y102{bottom:249.946667pt;}
.yd4{bottom:250.746667pt;}
.y37{bottom:251.066667pt;}
.y6b{bottom:259.546667pt;}
.y9f{bottom:263.866667pt;}
.y101{bottom:265.306667pt;}
.y36{bottom:266.266667pt;}
.yd3{bottom:266.906667pt;}
.y6a{bottom:274.906667pt;}
.y9e{bottom:279.226667pt;}
.y100{bottom:280.666667pt;}
.y35{bottom:281.626667pt;}
.yd2{bottom:283.226667pt;}
.y69{bottom:290.266667pt;}
.y9d{bottom:295.546667pt;}
.yff{bottom:296.026667pt;}
.y34{bottom:296.986667pt;}
.yd1{bottom:298.586667pt;}
.y68{bottom:305.666667pt;}
.y9c{bottom:310.786667pt;}
.y33{bottom:312.386667pt;}
.yd0{bottom:313.986667pt;}
.y67{bottom:321.026667pt;}
.y9b{bottom:327.106667pt;}
.y32{bottom:327.746667pt;}
.yfe{bottom:328.546667pt;}
.ycf{bottom:330.306667pt;}
.y66{bottom:336.226667pt;}
.y31{bottom:343.106667pt;}
.y9a{bottom:343.426667pt;}
.yfd{bottom:343.906667pt;}
.yce{bottom:346.626667pt;}
.y65{bottom:351.586667pt;}
.y30{bottom:358.306667pt;}
.y99{bottom:359.746667pt;}
.yfc{bottom:360.226667pt;}
.ycd{bottom:361.986667pt;}
.y64{bottom:366.946667pt;}
.y2f{bottom:373.666667pt;}
.y98{bottom:375.106667pt;}
.yfb{bottom:376.546667pt;}
.ycc{bottom:377.506667pt;}
.y63{bottom:382.306667pt;}
.y2e{bottom:389.026667pt;}
.y97{bottom:391.266667pt;}
.ycb{bottom:392.866667pt;}
.y62{bottom:397.666667pt;}
.y2d{bottom:404.386667pt;}
.y96{bottom:407.586667pt;}
.yfa{bottom:408.066667pt;}
.yca{bottom:408.226667pt;}
.y61{bottom:413.026667pt;}
.y2c{bottom:421.666667pt;}
.y95{bottom:422.946667pt;}
.yf9{bottom:423.426667pt;}
.yc9{bottom:423.586667pt;}
.y60{bottom:428.226667pt;}
.y2b{bottom:437.026667pt;}
.y94{bottom:438.306667pt;}
.yc8{bottom:438.786667pt;}
.y5f{bottom:443.586667pt;}
.y2a{bottom:452.386667pt;}
.y93{bottom:453.666667pt;}
.yc7{bottom:454.146667pt;}
.yf8{bottom:455.106667pt;}
.y5e{bottom:458.946667pt;}
.y29{bottom:467.746667pt;}
.y92{bottom:469.026667pt;}
.yc6{bottom:469.506667pt;}
.yf7{bottom:471.426667pt;}
.y5d{bottom:474.306667pt;}
.y28{bottom:482.946667pt;}
.y91{bottom:484.226667pt;}
.yc5{bottom:484.866667pt;}
.yf6{bottom:487.586667pt;}
.y5c{bottom:489.666667pt;}
.y27{bottom:498.306667pt;}
.y90{bottom:499.586667pt;}
.yc4{bottom:500.226667pt;}
.yf5{bottom:502.946667pt;}
.y5b{bottom:505.026667pt;}
.y26{bottom:513.666667pt;}
.y8f{bottom:514.946667pt;}
.yc3{bottom:515.426667pt;}
.yf4{bottom:518.306667pt;}
.y5a{bottom:520.226667pt;}
.y25{bottom:529.026667pt;}
.y8e{bottom:530.306667pt;}
.yc2{bottom:530.786667pt;}
.yf2{bottom:531.426667pt;}
.y59{bottom:535.586667pt;}
.y24{bottom:544.413333pt;}
.y8d{bottom:545.693333pt;}
.yc1{bottom:547.133333pt;}
.y58{bottom:550.973333pt;}
.y23{bottom:559.773333pt;}
.y8c{bottom:561.053333pt;}
.yf1{bottom:562.813333pt;}
.yc0{bottom:563.453333pt;}
.y57{bottom:566.333333pt;}
.y22{bottom:574.973333pt;}
.y8b{bottom:576.253333pt;}
.ybf{bottom:578.813333pt;}
.y56{bottom:581.693333pt;}
.y21{bottom:590.333333pt;}
.y8a{bottom:591.613333pt;}
.ybe{bottom:594.173333pt;}
.yef{bottom:594.813333pt;}
.y55{bottom:597.053333pt;}
.y20{bottom:605.693333pt;}
.y89{bottom:606.973333pt;}
.ybd{bottom:609.373333pt;}
.y54{bottom:612.253333pt;}
.yed{bottom:617.853333pt;}
.y1f{bottom:621.053333pt;}
.y88{bottom:622.333333pt;}
.ybc{bottom:624.733333pt;}
.y53{bottom:627.613333pt;}
.y1e{bottom:636.413333pt;}
.y87{bottom:637.693333pt;}
.ybb{bottom:640.093333pt;}
.y52{bottom:642.973333pt;}
.yec{bottom:649.053333pt;}
.y1d{bottom:651.773333pt;}
.y86{bottom:652.893333pt;}
.yba{bottom:655.453333pt;}
.y51{bottom:658.333333pt;}
.y1c{bottom:666.973333pt;}
.yeb{bottom:667.933333pt;}
.y85{bottom:668.253333pt;}
.yb9{bottom:670.813333pt;}
.y50{bottom:673.693333pt;}
.y1b{bottom:682.333333pt;}
.yea{bottom:683.293333pt;}
.y84{bottom:683.613333pt;}
.yb8{bottom:686.173333pt;}
.y4f{bottom:688.893333pt;}
.y1a{bottom:697.693333pt;}
.ye9{bottom:698.653333pt;}
.y83{bottom:698.973333pt;}
.yb7{bottom:701.373333pt;}
.y4e{bottom:704.253333pt;}
.ye8{bottom:714.013333pt;}
.y82{bottom:714.333333pt;}
.y19{bottom:714.973333pt;}
.yb6{bottom:716.733333pt;}
.y4d{bottom:719.613333pt;}
.ye7{bottom:729.373333pt;}
.y81{bottom:729.693333pt;}
.y18{bottom:730.813333pt;}
.yb5{bottom:732.093333pt;}
.y4c{bottom:734.973333pt;}
.y80{bottom:742.813333pt;}
.ye6{bottom:744.733333pt;}
.yb4{bottom:747.453333pt;}
.y17{bottom:747.613333pt;}
.y4b{bottom:750.333333pt;}
.ye5{bottom:757.853333pt;}
.y7d{bottom:758.813333pt;}
.yb3{bottom:762.813333pt;}
.y16{bottom:764.413333pt;}
.y4a{bottom:765.693333pt;}
.ye4{bottom:773.893333pt;}
.yb2{bottom:778.053333pt;}
.y49{bottom:780.933333pt;}
.y15{bottom:781.413333pt;}
.ye3{bottom:789.893333pt;}
.y7c{bottom:790.053333pt;}
.yb1{bottom:793.413333pt;}
.y48{bottom:796.293333pt;}
.y14{bottom:798.213333pt;}
.ye2{bottom:805.893333pt;}
.y7b{bottom:806.053333pt;}
.yb0{bottom:808.773333pt;}
.y47{bottom:811.653333pt;}
.y13{bottom:815.173333pt;}
.ye1{bottom:821.893333pt;}
.yaf{bottom:824.133333pt;}
.y46{bottom:827.013333pt;}
.y12{bottom:831.973333pt;}
.y7a{bottom:837.413333pt;}
.ye0{bottom:837.893333pt;}
.yae{bottom:840.453333pt;}
.y45{bottom:842.373333pt;}
.y11{bottom:848.773333pt;}
.y79{bottom:853.413333pt;}
.yad{bottom:855.813333pt;}
.ydf{bottom:856.773333pt;}
.y44{bottom:857.733333pt;}
.y10{bottom:865.733333pt;}
.yac{bottom:871.013333pt;}
.yde{bottom:871.973333pt;}
.y43{bottom:872.933333pt;}
.yf{bottom:882.213333pt;}
.y76{bottom:884.773333pt;}
.yab{bottom:887.333333pt;}
.y42{bottom:888.293333pt;}
.ye{bottom:898.213333pt;}
.yaa{bottom:902.693333pt;}
.y41{bottom:903.653333pt;}
.yd{bottom:916.613333pt;}
.ya9{bottom:918.053333pt;}
.y40{bottom:919.013333pt;}
.y9{bottom:935.493333pt;}
.y8{bottom:951.973333pt;}
.y7{bottom:966.053333pt;}
.y6{bottom:982.053333pt;}
.y5{bottom:996.933333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hd{height:15.200000pt;}
.hb{height:15.360000pt;}
.h12{height:22.400000pt;}
.h11{height:30.560000pt;}
.hc{height:30.592000pt;}
.ha{height:30.720000pt;}
.h13{height:30.752000pt;}
.h6{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.h10{height:38.491250pt;}
.h9{height:38.672812pt;}
.he{height:40.670000pt;}
.h8{height:41.543750pt;}
.h3{height:42.578750pt;}
.hf{height:44.768125pt;}
.h4{height:45.156250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:155.066667pt;}
.w9{width:155.200000pt;}
.w8{width:155.226667pt;}
.w4{width:221.626667pt;}
.w3{width:221.786667pt;}
.w5{width:221.826667pt;}
.w6{width:311.066667pt;}
.w7{width:311.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1{left:96.031988pt;}
.x2{left:120.671988pt;}
.x21{left:129.914667pt;}
.x23{left:132.154667pt;}
.x22{left:138.394667pt;}
.x11{left:144.026655pt;}
.xb{left:150.106655pt;}
.x4{left:152.026655pt;}
.x7{left:166.426655pt;}
.x17{left:190.586655pt;}
.x18{left:192.026655pt;}
.xe{left:224.506655pt;}
.xa{left:253.346655pt;}
.x12{left:280.866655pt;}
.x24{left:290.146655pt;}
.x20{left:294.146655pt;}
.x1c{left:295.746655pt;}
.x1b{left:308.226655pt;}
.xc{left:311.906655pt;}
.x14{left:319.106667pt;}
.x1f{left:328.066655pt;}
.x1d{left:335.426655pt;}
.xf{left:338.306655pt;}
.x16{left:352.866655pt;}
.x10{left:354.786655pt;}
.xd{left:357.986655pt;}
.x6{left:363.586655pt;}
.x26{left:365.186655pt;}
.x9{left:369.506655pt;}
.x5{left:377.666655pt;}
.x19{left:403.746655pt;}
.x8{left:408.066655pt;}
.x1a{left:428.733322pt;}
.x1e{left:432.093322pt;}
.x3{left:472.093322pt;}
.x15{left:541.373333pt;}
.x25{left:564.413333pt;}
}




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