
    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_d1646e37adb797de890b1e93.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6949514f5700066335beb888.woff2')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_a4f5a6d181252585b65fd42c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a4c41b87a36bf3713b0d7070.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28c4d54897b242a736a65729.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4addb75611cdca4f330f6987.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9721edc968d8eb8dcfba9871.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_6943c9b63880562aeea958c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_145d1cd0315e248474279de8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls18{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.262200px;}
.ls1a{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.666000px;}
.ls14{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.ls19{letter-spacing:41.706720px;}
.lsf{letter-spacing:104.490720px;}
.ls12{letter-spacing:114.570720px;}
.ls15{letter-spacing:118.170720px;}
.lse{letter-spacing:134.730720px;}
.ls9{letter-spacing:137.610720px;}
.ls8{letter-spacing:154.170720px;}
.ls1{letter-spacing:161.370720px;}
.lsb{letter-spacing:179.226720px;}
.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:-16.254600px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.ws3{word-spacing:-14.166000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1578.070080px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-930.967920px;}
._d{margin-left:-721.224720px;}
._e{margin-left:-693.074160px;}
._18{margin-left:-595.620000px;}
._19{margin-left:-579.160800px;}
._a{margin-left:-571.401360px;}
._15{margin-left:-538.559640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.807360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-143.280000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._1f{margin-left:-3.614400px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._20{width:4.123440px;}
._21{width:5.199120px;}
._25{width:6.573600px;}
._24{width:7.799760px;}
._22{width:8.918640px;}
._23{width:9.991440px;}
._27{width:11.533680px;}
._26{width:16.493760px;}
._1d{width:18.673200px;}
._1e{width:20.718480px;}
._2c{width:47.064960px;}
._2b{width:48.166560px;}
._29{width:108.046080px;}
._28{width:109.121760px;}
._2a{width:172.646640px;}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.240000px;}
.yd4{bottom:3.420000px;}
.y6e{bottom:3.600000px;}
.y72{bottom:3.780000px;}
.y62{bottom:4.860000px;}
.ydb{bottom:5.760000px;}
.ye0{bottom:6.120000px;}
.ye2{bottom:6.300000px;}
.y6d{bottom:20.880000px;}
.y7f{bottom:21.060000px;}
.y79{bottom:21.090000px;}
.y6c{bottom:38.160000px;}
.y7e{bottom:38.340000px;}
.y78{bottom:38.370000px;}
.yde{bottom:45.900000px;}
.y6b{bottom:55.440000px;}
.y7d{bottom:55.620000px;}
.y6{bottom:60.660000px;}
.ydd{bottom:65.700000px;}
.y6a{bottom:72.720000px;}
.y34{bottom:86.400000px;}
.y63{bottom:88.020000px;}
.y69{bottom:90.000000px;}
.yd2{bottom:94.500000px;}
.ya9{bottom:100.080000px;}
.y33{bottom:106.380000px;}
.y68{bottom:107.100000px;}
.y7c{bottom:107.280000px;}
.yd1{bottom:114.480000px;}
.ya8{bottom:119.880000px;}
.y67{bottom:124.410000px;}
.y7b{bottom:124.560000px;}
.y32{bottom:126.180000px;}
.yd0{bottom:134.280000px;}
.ya7{bottom:139.680000px;}
.y66{bottom:141.690000px;}
.y31{bottom:145.980000px;}
.ycf{bottom:154.080000px;}
.y65{bottom:158.970000px;}
.ya6{bottom:159.480000px;}
.y30{bottom:165.780000px;}
.yce{bottom:173.880000px;}
.y64{bottom:176.250000px;}
.ya5{bottom:179.460000px;}
.y2f{bottom:185.580000px;}
.ycd{bottom:193.680000px;}
.ya4{bottom:199.260000px;}
.y2e{bottom:205.410000px;}
.ycc{bottom:213.690000px;}
.ya3{bottom:219.090000px;}
.y2d{bottom:225.390000px;}
.ycb{bottom:233.130000px;}
.ya2{bottom:238.890000px;}
.y2c{bottom:245.190000px;}
.yca{bottom:253.290000px;}
.ya1{bottom:258.690000px;}
.y2b{bottom:264.990000px;}
.yc9{bottom:273.090000px;}
.y61{bottom:278.490000px;}
.ya0{bottom:278.670000px;}
.y2a{bottom:284.790000px;}
.yc8{bottom:292.890000px;}
.y9f{bottom:298.470000px;}
.y60{bottom:303.690000px;}
.y29{bottom:304.590000px;}
.yc7{bottom:312.870000px;}
.y9e{bottom:318.270000px;}
.y5f{bottom:324.030000px;}
.y28{bottom:324.570000px;}
.yc6{bottom:332.670000px;}
.y9d{bottom:338.070000px;}
.y5e{bottom:343.830000px;}
.y27{bottom:344.370000px;}
.yc5{bottom:352.470000px;}
.y9c{bottom:357.870000px;}
.y5d{bottom:363.630000px;}
.y26{bottom:364.170000px;}
.yc4{bottom:372.270000px;}
.y9b{bottom:377.850000px;}
.y5c{bottom:383.070000px;}
.y25{bottom:383.970000px;}
.yc3{bottom:392.070000px;}
.y9a{bottom:397.650000px;}
.y24{bottom:403.770000px;}
.yc2{bottom:412.050000px;}
.y5b{bottom:412.230000px;}
.y99{bottom:417.450000px;}
.ye4{bottom:420.330000px;}
.y23{bottom:423.750000px;}
.yc1{bottom:431.850000px;}
.y5a{bottom:432.210000px;}
.y98{bottom:437.295000px;}
.ydc{bottom:440.895000px;}
.y22{bottom:443.595000px;}
.yc0{bottom:451.695000px;}
.y59{bottom:452.055000px;}
.y97{bottom:457.095000px;}
.ye3{bottom:460.695000px;}
.y21{bottom:463.395000px;}
.y76{bottom:465.735000px;}
.ybf{bottom:471.495000px;}
.y58{bottom:471.855000px;}
.y96{bottom:477.075000px;}
.ye1{bottom:480.495000px;}
.y75{bottom:483.015000px;}
.y20{bottom:483.195000px;}
.y57{bottom:491.655000px;}
.y95{bottom:496.875000px;}
.y74{bottom:500.295000px;}
.ydf{bottom:500.475000px;}
.y1f{bottom:502.995000px;}
.ybe{bottom:507.675000px;}
.y56{bottom:511.455000px;}
.y94{bottom:516.315000px;}
.y73{bottom:517.575000px;}
.yda{bottom:520.995000px;}
.y1e{bottom:522.975000px;}
.ybd{bottom:529.455000px;}
.y55{bottom:531.435000px;}
.y71{bottom:534.855000px;}
.y1d{bottom:542.775000px;}
.y93{bottom:545.475000px;}
.ybc{bottom:549.075000px;}
.ye9{bottom:549.435000px;}
.y54{bottom:551.235000px;}
.y6f{bottom:552.135000px;}
.y1c{bottom:562.575000px;}
.y92{bottom:565.275000px;}
.ybb{bottom:569.235000px;}
.y53{bottom:571.035000px;}
.y1b{bottom:582.375000px;}
.y91{bottom:585.255000px;}
.yba{bottom:589.035000px;}
.y52{bottom:590.835000px;}
.y1a{bottom:602.175000px;}
.y90{bottom:605.055000px;}
.yb9{bottom:608.835000px;}
.y51{bottom:610.635000px;}
.y19{bottom:621.795000px;}
.y8f{bottom:624.855000px;}
.yb8{bottom:628.635000px;}
.y50{bottom:630.615000px;}
.y8e{bottom:644.655000px;}
.yb7{bottom:648.615000px;}
.y4f{bottom:650.415000px;}
.y18{bottom:664.095000px;}
.y8d{bottom:664.455000px;}
.yb6{bottom:668.415000px;}
.yd9{bottom:668.775000px;}
.y4e{bottom:669.855000px;}
.y17{bottom:683.925000px;}
.y8c{bottom:684.465000px;}
.yd5{bottom:686.805000px;}
.yb5{bottom:688.245000px;}
.y4d{bottom:699.045000px;}
.yd8{bottom:704.085000px;}
.y8b{bottom:704.265000px;}
.yb4{bottom:708.045000px;}
.y16{bottom:712.725000px;}
.y4c{bottom:718.845000px;}
.yd7{bottom:721.185000px;}
.y8a{bottom:724.065000px;}
.yb3{bottom:727.845000px;}
.y15{bottom:732.525000px;}
.yd6{bottom:738.465000px;}
.y4b{bottom:738.825000px;}
.y89{bottom:743.865000px;}
.yb2{bottom:747.825000px;}
.y14{bottom:752.325000px;}
.yd3{bottom:756.465000px;}
.y4a{bottom:758.265000px;}
.y88{bottom:763.665000px;}
.yb1{bottom:767.625000px;}
.y13{bottom:772.305000px;}
.y87{bottom:783.645000px;}
.yb0{bottom:787.065000px;}
.y49{bottom:787.425000px;}
.y12{bottom:792.105000px;}
.y86{bottom:803.445000px;}
.y48{bottom:807.225000px;}
.y11{bottom:811.905000px;}
.y85{bottom:822.885000px;}
.yaf{bottom:826.665000px;}
.y47{bottom:827.025000px;}
.y10{bottom:831.705000px;}
.y84{bottom:843.045000px;}
.yae{bottom:846.645000px;}
.y46{bottom:847.005000px;}
.yf{bottom:851.505000px;}
.y83{bottom:862.845000px;}
.yad{bottom:866.445000px;}
.y45{bottom:866.805000px;}
.ye{bottom:871.485000px;}
.y82{bottom:882.465000px;}
.y44{bottom:886.245000px;}
.ye8{bottom:886.605000px;}
.yd{bottom:891.285000px;}
.y81{bottom:902.625000px;}
.yac{bottom:906.045000px;}
.y43{bottom:906.405000px;}
.yc{bottom:913.290000px;}
.y80{bottom:917.070000px;}
.yab{bottom:925.890000px;}
.y42{bottom:926.250000px;}
.yb{bottom:933.270000px;}
.y41{bottom:945.870000px;}
.ye7{bottom:946.230000px;}
.ya{bottom:953.430000px;}
.y40{bottom:966.030000px;}
.y9{bottom:974.490000px;}
.y3f{bottom:985.830000px;}
.y7a{bottom:986.730000px;}
.y8{bottom:997.890000px;}
.y3e{bottom:1005.630000px;}
.y3d{bottom:1025.430000px;}
.y7{bottom:1029.750000px;}
.ye6{bottom:1045.050000px;}
.y3c{bottom:1045.410000px;}
.ye5{bottom:1064.850000px;}
.y3b{bottom:1065.210000px;}
.y5{bottom:1068.630000px;}
.y3a{bottom:1085.010000px;}
.y4{bottom:1099.410000px;}
.y39{bottom:1104.810000px;}
.y38{bottom:1124.610000px;}
.y77{bottom:1125.510000px;}
.y3{bottom:1130.370000px;}
.y37{bottom:1144.590000px;}
.y2{bottom:1161.180000px;}
.yaa{bottom:1164.060000px;}
.y36{bottom:1164.420000px;}
.y1{bottom:1192.140000px;}
.y35{bottom:1193.580000px;}
.hd{height:17.100000px;}
.he{height:17.280000px;}
.h14{height:17.316000px;}
.hb{height:18.720000px;}
.h15{height:19.800000px;}
.h18{height:19.836000px;}
.h17{height:19.980000px;}
.h12{height:43.215117px;}
.hf{height:51.876000px;}
.h8{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.010937px;}
.h13{height:65.884219px;}
.h6{height:66.757500px;}
.h11{height:68.940000px;}
.h2{height:72.562500px;}
.h16{height:79.380000px;}
.h4{height:96.508125px;}
.h10{height:138.060000px;}
.hc{height:189.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:82.980000px;}
.wa{width:95.580000px;}
.w5{width:102.636000px;}
.wd{width:116.820000px;}
.w6{width:128.376000px;}
.w8{width:179.490000px;}
.wc{width:182.010000px;}
.w7{width:189.030000px;}
.wb{width:191.370000px;}
.w9{width:203.250000px;}
.w4{width:575.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:54.179987px;}
.xf{left:80.999987px;}
.xa{left:111.276000px;}
.x3{left:116.856000px;}
.x5{left:200.550000px;}
.x6{left:236.010000px;}
.xb{left:290.775000px;}
.x9{left:325.694987px;}
.x7{left:338.655000px;}
.x8{left:467.025000px;}
.xe{left:472.785000px;}
.xc{left:494.025000px;}
.xd{left:589.605000px;}
.x2{left:795.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.233067pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.592000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls19{letter-spacing:37.072640pt;}
.lsf{letter-spacing:92.880640pt;}
.ls12{letter-spacing:101.840640pt;}
.ls15{letter-spacing:105.040640pt;}
.lse{letter-spacing:119.760640pt;}
.ls9{letter-spacing:122.320640pt;}
.ls8{letter-spacing:137.040640pt;}
.ls1{letter-spacing:143.440640pt;}
.lsb{letter-spacing:159.312640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.ws3{word-spacing:-12.592000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1402.728960pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-827.527040pt;}
._d{margin-left:-641.088640pt;}
._e{margin-left:-616.065920pt;}
._18{margin-left:-529.440000pt;}
._19{margin-left:-514.809600pt;}
._a{margin-left:-507.912320pt;}
._15{margin-left:-478.719680pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-142.050987pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-127.360000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._1f{margin-left:-3.212800pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._20{width:3.665280pt;}
._21{width:4.621440pt;}
._25{width:5.843200pt;}
._24{width:6.933120pt;}
._22{width:7.927680pt;}
._23{width:8.881280pt;}
._27{width:10.252160pt;}
._26{width:14.661120pt;}
._1d{width:16.598400pt;}
._1e{width:18.416427pt;}
._2c{width:41.835520pt;}
._2b{width:42.814720pt;}
._29{width:96.040960pt;}
._28{width:96.997120pt;}
._2a{width:153.463680pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.880000pt;}
.yd4{bottom:3.040000pt;}
.y6e{bottom:3.200000pt;}
.y72{bottom:3.360000pt;}
.y62{bottom:4.320000pt;}
.ydb{bottom:5.120000pt;}
.ye0{bottom:5.440000pt;}
.ye2{bottom:5.600000pt;}
.y6d{bottom:18.560000pt;}
.y7f{bottom:18.720000pt;}
.y79{bottom:18.746667pt;}
.y6c{bottom:33.920000pt;}
.y7e{bottom:34.080000pt;}
.y78{bottom:34.106667pt;}
.yde{bottom:40.800000pt;}
.y6b{bottom:49.280000pt;}
.y7d{bottom:49.440000pt;}
.y6{bottom:53.920000pt;}
.ydd{bottom:58.400000pt;}
.y6a{bottom:64.640000pt;}
.y34{bottom:76.800000pt;}
.y63{bottom:78.240000pt;}
.y69{bottom:80.000000pt;}
.yd2{bottom:84.000000pt;}
.ya9{bottom:88.960000pt;}
.y33{bottom:94.560000pt;}
.y68{bottom:95.200000pt;}
.y7c{bottom:95.360000pt;}
.yd1{bottom:101.760000pt;}
.ya8{bottom:106.560000pt;}
.y67{bottom:110.586667pt;}
.y7b{bottom:110.720000pt;}
.y32{bottom:112.160000pt;}
.yd0{bottom:119.360000pt;}
.ya7{bottom:124.160000pt;}
.y66{bottom:125.946667pt;}
.y31{bottom:129.760000pt;}
.ycf{bottom:136.960000pt;}
.y65{bottom:141.306667pt;}
.ya6{bottom:141.760000pt;}
.y30{bottom:147.360000pt;}
.yce{bottom:154.560000pt;}
.y64{bottom:156.666667pt;}
.ya5{bottom:159.520000pt;}
.y2f{bottom:164.960000pt;}
.ycd{bottom:172.160000pt;}
.ya4{bottom:177.120000pt;}
.y2e{bottom:182.586667pt;}
.ycc{bottom:189.946667pt;}
.ya3{bottom:194.746667pt;}
.y2d{bottom:200.346667pt;}
.ycb{bottom:207.226667pt;}
.ya2{bottom:212.346667pt;}
.y2c{bottom:217.946667pt;}
.yca{bottom:225.146667pt;}
.ya1{bottom:229.946667pt;}
.y2b{bottom:235.546667pt;}
.yc9{bottom:242.746667pt;}
.y61{bottom:247.546667pt;}
.ya0{bottom:247.706667pt;}
.y2a{bottom:253.146667pt;}
.yc8{bottom:260.346667pt;}
.y9f{bottom:265.306667pt;}
.y60{bottom:269.946667pt;}
.y29{bottom:270.746667pt;}
.yc7{bottom:278.106667pt;}
.y9e{bottom:282.906667pt;}
.y5f{bottom:288.026667pt;}
.y28{bottom:288.506667pt;}
.yc6{bottom:295.706667pt;}
.y9d{bottom:300.506667pt;}
.y5e{bottom:305.626667pt;}
.y27{bottom:306.106667pt;}
.yc5{bottom:313.306667pt;}
.y9c{bottom:318.106667pt;}
.y5d{bottom:323.226667pt;}
.y26{bottom:323.706667pt;}
.yc4{bottom:330.906667pt;}
.y9b{bottom:335.866667pt;}
.y5c{bottom:340.506667pt;}
.y25{bottom:341.306667pt;}
.yc3{bottom:348.506667pt;}
.y9a{bottom:353.466667pt;}
.y24{bottom:358.906667pt;}
.yc2{bottom:366.266667pt;}
.y5b{bottom:366.426667pt;}
.y99{bottom:371.066667pt;}
.ye4{bottom:373.626667pt;}
.y23{bottom:376.666667pt;}
.yc1{bottom:383.866667pt;}
.y5a{bottom:384.186667pt;}
.y98{bottom:388.706667pt;}
.ydc{bottom:391.906667pt;}
.y22{bottom:394.306667pt;}
.yc0{bottom:401.506667pt;}
.y59{bottom:401.826667pt;}
.y97{bottom:406.306667pt;}
.ye3{bottom:409.506667pt;}
.y21{bottom:411.906667pt;}
.y76{bottom:413.986667pt;}
.ybf{bottom:419.106667pt;}
.y58{bottom:419.426667pt;}
.y96{bottom:424.066667pt;}
.ye1{bottom:427.106667pt;}
.y75{bottom:429.346667pt;}
.y20{bottom:429.506667pt;}
.y57{bottom:437.026667pt;}
.y95{bottom:441.666667pt;}
.y74{bottom:444.706667pt;}
.ydf{bottom:444.866667pt;}
.y1f{bottom:447.106667pt;}
.ybe{bottom:451.266667pt;}
.y56{bottom:454.626667pt;}
.y94{bottom:458.946667pt;}
.y73{bottom:460.066667pt;}
.yda{bottom:463.106667pt;}
.y1e{bottom:464.866667pt;}
.ybd{bottom:470.626667pt;}
.y55{bottom:472.386667pt;}
.y71{bottom:475.426667pt;}
.y1d{bottom:482.466667pt;}
.y93{bottom:484.866667pt;}
.ybc{bottom:488.066667pt;}
.ye9{bottom:488.386667pt;}
.y54{bottom:489.986667pt;}
.y6f{bottom:490.786667pt;}
.y1c{bottom:500.066667pt;}
.y92{bottom:502.466667pt;}
.ybb{bottom:505.986667pt;}
.y53{bottom:507.586667pt;}
.y1b{bottom:517.666667pt;}
.y91{bottom:520.226667pt;}
.yba{bottom:523.586667pt;}
.y52{bottom:525.186667pt;}
.y1a{bottom:535.266667pt;}
.y90{bottom:537.826667pt;}
.yb9{bottom:541.186667pt;}
.y51{bottom:542.786667pt;}
.y19{bottom:552.706667pt;}
.y8f{bottom:555.426667pt;}
.yb8{bottom:558.786667pt;}
.y50{bottom:560.546667pt;}
.y8e{bottom:573.026667pt;}
.yb7{bottom:576.546667pt;}
.y4f{bottom:578.146667pt;}
.y18{bottom:590.306667pt;}
.y8d{bottom:590.626667pt;}
.yb6{bottom:594.146667pt;}
.yd9{bottom:594.466667pt;}
.y4e{bottom:595.426667pt;}
.y17{bottom:607.933333pt;}
.y8c{bottom:608.413333pt;}
.yd5{bottom:610.493333pt;}
.yb5{bottom:611.773333pt;}
.y4d{bottom:621.373333pt;}
.yd8{bottom:625.853333pt;}
.y8b{bottom:626.013333pt;}
.yb4{bottom:629.373333pt;}
.y16{bottom:633.533333pt;}
.y4c{bottom:638.973333pt;}
.yd7{bottom:641.053333pt;}
.y8a{bottom:643.613333pt;}
.yb3{bottom:646.973333pt;}
.y15{bottom:651.133333pt;}
.yd6{bottom:656.413333pt;}
.y4b{bottom:656.733333pt;}
.y89{bottom:661.213333pt;}
.yb2{bottom:664.733333pt;}
.y14{bottom:668.733333pt;}
.yd3{bottom:672.413333pt;}
.y4a{bottom:674.013333pt;}
.y88{bottom:678.813333pt;}
.yb1{bottom:682.333333pt;}
.y13{bottom:686.493333pt;}
.y87{bottom:696.573333pt;}
.yb0{bottom:699.613333pt;}
.y49{bottom:699.933333pt;}
.y12{bottom:704.093333pt;}
.y86{bottom:714.173333pt;}
.y48{bottom:717.533333pt;}
.y11{bottom:721.693333pt;}
.y85{bottom:731.453333pt;}
.yaf{bottom:734.813333pt;}
.y47{bottom:735.133333pt;}
.y10{bottom:739.293333pt;}
.y84{bottom:749.373333pt;}
.yae{bottom:752.573333pt;}
.y46{bottom:752.893333pt;}
.yf{bottom:756.893333pt;}
.y83{bottom:766.973333pt;}
.yad{bottom:770.173333pt;}
.y45{bottom:770.493333pt;}
.ye{bottom:774.653333pt;}
.y82{bottom:784.413333pt;}
.y44{bottom:787.773333pt;}
.ye8{bottom:788.093333pt;}
.yd{bottom:792.253333pt;}
.y81{bottom:802.333333pt;}
.yac{bottom:805.373333pt;}
.y43{bottom:805.693333pt;}
.yc{bottom:811.813333pt;}
.y80{bottom:815.173333pt;}
.yab{bottom:823.013333pt;}
.y42{bottom:823.333333pt;}
.yb{bottom:829.573333pt;}
.y41{bottom:840.773333pt;}
.ye7{bottom:841.093333pt;}
.ya{bottom:847.493333pt;}
.y40{bottom:858.693333pt;}
.y9{bottom:866.213333pt;}
.y3f{bottom:876.293333pt;}
.y7a{bottom:877.093333pt;}
.y8{bottom:887.013333pt;}
.y3e{bottom:893.893333pt;}
.y3d{bottom:911.493333pt;}
.y7{bottom:915.333333pt;}
.ye6{bottom:928.933333pt;}
.y3c{bottom:929.253333pt;}
.ye5{bottom:946.533333pt;}
.y3b{bottom:946.853333pt;}
.y5{bottom:949.893333pt;}
.y3a{bottom:964.453333pt;}
.y4{bottom:977.253333pt;}
.y39{bottom:982.053333pt;}
.y38{bottom:999.653333pt;}
.y77{bottom:1000.453333pt;}
.y3{bottom:1004.773333pt;}
.y37{bottom:1017.413333pt;}
.y2{bottom:1032.160000pt;}
.yaa{bottom:1034.720000pt;}
.y36{bottom:1035.040000pt;}
.y1{bottom:1059.680000pt;}
.y35{bottom:1060.960000pt;}
.hd{height:15.200000pt;}
.he{height:15.360000pt;}
.h14{height:15.392000pt;}
.hb{height:16.640000pt;}
.h15{height:17.600000pt;}
.h18{height:17.632000pt;}
.h17{height:17.760000pt;}
.h12{height:38.413438pt;}
.hf{height:46.112000pt;}
.h8{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:57.787500pt;}
.h13{height:58.563750pt;}
.h6{height:59.340000pt;}
.h11{height:61.280000pt;}
.h2{height:64.500000pt;}
.h16{height:70.560000pt;}
.h4{height:85.785000pt;}
.h10{height:122.720000pt;}
.hc{height:168.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:73.760000pt;}
.wa{width:84.960000pt;}
.w5{width:91.232000pt;}
.wd{width:103.840000pt;}
.w6{width:114.112000pt;}
.w8{width:159.546667pt;}
.wc{width:161.786667pt;}
.w7{width:168.026667pt;}
.wb{width:170.106667pt;}
.w9{width:180.666667pt;}
.w4{width:511.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:48.159988pt;}
.xf{left:71.999988pt;}
.xa{left:98.912000pt;}
.x3{left:103.872000pt;}
.x5{left:178.266667pt;}
.x6{left:209.786667pt;}
.xb{left:258.466667pt;}
.x9{left:289.506655pt;}
.x7{left:301.026667pt;}
.x8{left:415.133333pt;}
.xe{left:420.253333pt;}
.xc{left:439.133333pt;}
.xd{left:524.093333pt;}
.x2{left:707.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  