
    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_a184d3c82324b5c6b4dbcbec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.072754;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_3bdd5eacd28b5491f10e51a4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a23f2b9840c65bbe6fc094b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_accf48c20b00b8f737d4fb6f.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_e52d194ccb546209b037826d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_89fbe9f299477f9ee43e7035.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_da13c220db1d8ec7fba29d6b.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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.053280px;}
.lse{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018720px;}
.ls15{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.666000px;}
.lsb{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.098720px;}
.ls6{letter-spacing:1.416000px;}
.ls8{letter-spacing:1.421280px;}
.ls0{letter-spacing:1.629360px;}
.ls3{letter-spacing:1.711920px;}
.ls5{letter-spacing:1.762560px;}
.ls1{letter-spacing:1.800000px;}
.ls4{letter-spacing:2.160000px;}
.ls7{letter-spacing:2.880000px;}
.ls12{letter-spacing:8.460000px;}
.ls19{letter-spacing:11.610720px;}
.ls17{letter-spacing:41.850720px;}
.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;}
}
.wsc{word-spacing:-54.000000px;}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-20.856000px;}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-2653.190400px;}
._6{margin-left:-1390.413120px;}
._9{margin-left:-1019.943360px;}
._8{margin-left:-989.964480px;}
._f{margin-left:-755.400000px;}
._c{margin-left:-555.620160px;}
._d{margin-left:-544.389600px;}
._a{margin-left:-541.983360px;}
._10{margin-left:-523.638720px;}
._1c{margin-left:-517.503360px;}
._1d{margin-left:-515.571840px;}
._e{margin-left:-462.960000px;}
._18{margin-left:-271.248480px;}
._12{margin-left:-264.240000px;}
._2c{margin-left:-262.709760px;}
._b{margin-left:-243.360000px;}
._11{margin-left:-230.400000px;}
._19{margin-left:-204.151680px;}
._13{margin-left:-165.600000px;}
._1b{margin-left:-151.200000px;}
._17{margin-left:-101.520000px;}
._15{margin-left:-99.360000px;}
._16{margin-left:-82.800000px;}
._14{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._29{margin-left:-6.237360px;}
._1{margin-left:-4.432320px;}
._2b{margin-left:-3.286800px;}
._2{margin-left:-2.270400px;}
._5{margin-left:-1.059840px;}
._0{width:1.399680px;}
._21{width:2.531280px;}
._3{width:4.320000px;}
._27{width:5.378400px;}
._28{width:6.436800px;}
._25{width:7.888320px;}
._26{width:9.451920px;}
._23{width:10.756560px;}
._22{width:11.772720px;}
._24{width:12.984960px;}
._2a{width:15.965280px;}
._20{width:17.980560px;}
._31{width:19.344240px;}
._1e{width:25.089120px;}
._1f{width:26.321520px;}
._2f{width:27.866880px;}
._30{width:29.259840px;}
._32{width:65.257920px;}
._2d{width:171.309360px;}
._2e{width:192.496080px;}
.fc5{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:5.760000px;}
.y7f{bottom:5.940000px;}
.y83{bottom:5.985000px;}
.y79{bottom:6.120000px;}
.y80{bottom:6.300000px;}
.y84{bottom:6.345000px;}
.y72{bottom:19.230000px;}
.y7c{bottom:25.560000px;}
.y7d{bottom:25.920000px;}
.y75{bottom:30.750000px;}
.y71{bottom:33.090000px;}
.y6b{bottom:44.790000px;}
.y74{bottom:47.130000px;}
.y70{bottom:49.470000px;}
.y6a{bottom:58.830000px;}
.y6{bottom:59.400000px;}
.y6f{bottom:63.330000px;}
.y69{bottom:75.030000px;}
.y73{bottom:77.370000px;}
.y6e{bottom:79.710000px;}
.y35{bottom:84.816000px;}
.y68{bottom:91.410000px;}
.y6d{bottom:93.750000px;}
.ybb{bottom:93.996000px;}
.y34{bottom:104.616000px;}
.y67{bottom:107.610000px;}
.y6c{bottom:109.950000px;}
.yba{bottom:113.796000px;}
.y63{bottom:120.996000px;}
.y66{bottom:123.990000px;}
.y33{bottom:124.416000px;}
.yb9{bottom:133.596000px;}
.y62{bottom:140.796000px;}
.y32{bottom:144.216000px;}
.y65{bottom:151.950000px;}
.yb8{bottom:153.570000px;}
.y61{bottom:160.770000px;}
.y31{bottom:164.010000px;}
.yb7{bottom:173.370000px;}
.y60{bottom:180.570000px;}
.y30{bottom:183.990000px;}
.yb6{bottom:193.170000px;}
.y5f{bottom:200.370000px;}
.y2f{bottom:203.790000px;}
.yb5{bottom:212.970000px;}
.y5e{bottom:220.170000px;}
.y2e{bottom:223.590000px;}
.yb4{bottom:232.770000px;}
.y5d{bottom:239.970000px;}
.y2d{bottom:243.390000px;}
.yb3{bottom:252.750000px;}
.y5c{bottom:259.950000px;}
.y2c{bottom:263.190000px;}
.yb2{bottom:272.550000px;}
.y5b{bottom:279.390000px;}
.y2b{bottom:283.170000px;}
.yb1{bottom:292.350000px;}
.y5a{bottom:299.550000px;}
.y2a{bottom:302.970000px;}
.yb0{bottom:312.150000px;}
.y59{bottom:319.350000px;}
.y29{bottom:322.770000px;}
.y82{bottom:323.310000px;}
.yaf{bottom:331.995000px;}
.y58{bottom:339.195000px;}
.y28{bottom:342.615000px;}
.y81{bottom:344.055000px;}
.yae{bottom:351.975000px;}
.y57{bottom:359.175000px;}
.y27{bottom:362.415000px;}
.yad{bottom:371.775000px;}
.y56{bottom:378.975000px;}
.y26{bottom:382.395000px;}
.y7e{bottom:384.375000px;}
.yac{bottom:391.575000px;}
.y55{bottom:398.775000px;}
.y25{bottom:402.195000px;}
.y7b{bottom:405.075000px;}
.yab{bottom:411.375000px;}
.y54{bottom:418.575000px;}
.y24{bottom:421.995000px;}
.yaa{bottom:431.175000px;}
.y53{bottom:438.375000px;}
.y23{bottom:441.795000px;}
.y7a{bottom:445.395000px;}
.ya9{bottom:451.155000px;}
.y52{bottom:458.355000px;}
.y22{bottom:461.595000px;}
.y78{bottom:466.095000px;}
.ya8{bottom:470.955000px;}
.y51{bottom:478.155000px;}
.y21{bottom:481.575000px;}
.y76{bottom:486.615000px;}
.ya7{bottom:490.755000px;}
.y20{bottom:501.375000px;}
.ya6{bottom:510.555000px;}
.y50{bottom:517.395000px;}
.y1f{bottom:521.175000px;}
.ybc{bottom:529.995000px;}
.ya5{bottom:530.355000px;}
.y4f{bottom:537.555000px;}
.y1e{bottom:540.975000px;}
.ya4{bottom:550.335000px;}
.y4e{bottom:557.535000px;}
.y1d{bottom:560.775000px;}
.ya3{bottom:570.135000px;}
.y4d{bottom:577.335000px;}
.y1c{bottom:580.755000px;}
.ya2{bottom:589.935000px;}
.y4c{bottom:597.165000px;}
.y1b{bottom:600.225000px;}
.ya1{bottom:609.765000px;}
.y4b{bottom:616.965000px;}
.y1a{bottom:620.025000px;}
.ya0{bottom:629.565000px;}
.y4a{bottom:636.405000px;}
.y19{bottom:642.525000px;}
.y9f{bottom:649.545000px;}
.y49{bottom:656.745000px;}
.y9e{bottom:669.345000px;}
.y18{bottom:671.325000px;}
.y48{bottom:676.545000px;}
.y9d{bottom:689.145000px;}
.y17{bottom:691.125000px;}
.y47{bottom:696.345000px;}
.y9c{bottom:708.945000px;}
.y16{bottom:710.925000px;}
.y46{bottom:716.145000px;}
.y9b{bottom:728.745000px;}
.y15{bottom:730.905000px;}
.y45{bottom:735.945000px;}
.y9a{bottom:748.725000px;}
.y14{bottom:750.705000px;}
.y44{bottom:755.925000px;}
.y99{bottom:768.525000px;}
.y13{bottom:770.505000px;}
.y43{bottom:775.725000px;}
.y98{bottom:788.325000px;}
.y12{bottom:790.305000px;}
.y42{bottom:795.525000px;}
.y97{bottom:808.125000px;}
.y11{bottom:810.105000px;}
.y41{bottom:815.325000px;}
.y96{bottom:827.925000px;}
.y10{bottom:830.085000px;}
.y40{bottom:835.125000px;}
.y95{bottom:847.905000px;}
.yf{bottom:849.885000px;}
.y3f{bottom:855.105000px;}
.y94{bottom:867.750000px;}
.ye{bottom:869.730000px;}
.y3e{bottom:874.950000px;}
.y93{bottom:887.550000px;}
.y3d{bottom:894.750000px;}
.yd{bottom:898.170000px;}
.y92{bottom:907.350000px;}
.y3c{bottom:914.550000px;}
.yc{bottom:918.870000px;}
.y91{bottom:927.150000px;}
.yb{bottom:933.810000px;}
.y3b{bottom:934.350000px;}
.y90{bottom:947.130000px;}
.y3a{bottom:953.970000px;}
.ya{bottom:954.870000px;}
.y8f{bottom:966.930000px;}
.y39{bottom:973.770000px;}
.y9{bottom:978.450000px;}
.y8e{bottom:986.730000px;}
.y64{bottom:987.840000px;}
.y38{bottom:990.510000px;}
.y8d{bottom:1006.530000px;}
.y8{bottom:1010.130000px;}
.y8c{bottom:1026.330000px;}
.y7{bottom:1038.570000px;}
.y8b{bottom:1046.310000px;}
.y8a{bottom:1066.110000px;}
.y5{bottom:1068.090000px;}
.y89{bottom:1085.910000px;}
.y4{bottom:1096.530000px;}
.y88{bottom:1105.710000px;}
.y3{bottom:1124.970000px;}
.y87{bottom:1125.510000px;}
.y86{bottom:1145.520000px;}
.y2{bottom:1153.440000px;}
.y37{bottom:1164.960000px;}
.y85{bottom:1165.320000px;}
.y1{bottom:1187.640000px;}
.y36{bottom:1194.480000px;}
.hf{height:19.800000px;}
.h11{height:19.980000px;}
.h12{height:20.016000px;}
.h9{height:37.771172px;}
.h10{height:39.600000px;}
.ha{height:43.472812px;}
.hc{height:49.868086px;}
.hb{height:51.210352px;}
.he{height:52.998047px;}
.h5{height:58.651172px;}
.h13{height:61.423863px;}
.h7{height:62.211094px;}
.h4{height:65.010937px;}
.h8{height:67.232813px;}
.h3{height:68.956875px;}
.h6{height:82.059961px;}
.h2{height:99.687656px;}
.hd{height:171.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:210.270000px;}
.w5{width:418.575000px;}
.w3{width:629.205000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x1{left:54.179987px;}
.x10{left:60.834000px;}
.x13{left:70.199987px;}
.x14{left:97.235987px;}
.x7{left:105.875987px;}
.x16{left:107.135987px;}
.x8{left:112.715987px;}
.xf{left:131.796000px;}
.x4{left:139.175987px;}
.x6{left:145.763987px;}
.x15{left:150.329987px;}
.x12{left:342.075000px;}
.xa{left:346.469987px;}
.x9{left:349.814987px;}
.xb{left:353.339987px;}
.x5{left:446.474987px;}
.xd{left:587.084987px;}
.xe{left:593.924987px;}
.xc{left:646.049987px;}
.x3{left:795.389987px;}
.x2{left:802.769987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.047360pt;}
.lse{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016640pt;}
.ls15{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.592000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls2{letter-spacing:0.976640pt;}
.ls6{letter-spacing:1.258667pt;}
.ls8{letter-spacing:1.263360pt;}
.ls0{letter-spacing:1.448320pt;}
.ls3{letter-spacing:1.521707pt;}
.ls5{letter-spacing:1.566720pt;}
.ls1{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls7{letter-spacing:2.560000pt;}
.ls12{letter-spacing:7.520000pt;}
.ls19{letter-spacing:10.320640pt;}
.ls17{letter-spacing:37.200640pt;}
.wsc{word-spacing:-48.000000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-18.538667pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-2358.391467pt;}
._6{margin-left:-1235.922773pt;}
._9{margin-left:-906.616320pt;}
._8{margin-left:-879.968427pt;}
._f{margin-left:-671.466667pt;}
._c{margin-left:-493.884587pt;}
._d{margin-left:-483.901867pt;}
._a{margin-left:-481.762987pt;}
._10{margin-left:-465.456640pt;}
._1c{margin-left:-460.002987pt;}
._1d{margin-left:-458.286080pt;}
._e{margin-left:-411.520000pt;}
._18{margin-left:-241.109760pt;}
._12{margin-left:-234.880000pt;}
._2c{margin-left:-233.519787pt;}
._b{margin-left:-216.320000pt;}
._11{margin-left:-204.800000pt;}
._19{margin-left:-181.468160pt;}
._13{margin-left:-147.200000pt;}
._1b{margin-left:-134.400000pt;}
._17{margin-left:-90.240000pt;}
._15{margin-left:-88.320000pt;}
._16{margin-left:-73.600000pt;}
._14{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._29{margin-left:-5.544320pt;}
._1{margin-left:-3.939840pt;}
._2b{margin-left:-2.921600pt;}
._2{margin-left:-2.018133pt;}
._5{margin-left:-0.942080pt;}
._0{width:1.244160pt;}
._21{width:2.250027pt;}
._3{width:3.840000pt;}
._27{width:4.780800pt;}
._28{width:5.721600pt;}
._25{width:7.011840pt;}
._26{width:8.401707pt;}
._23{width:9.561387pt;}
._22{width:10.464640pt;}
._24{width:11.542187pt;}
._2a{width:14.191360pt;}
._20{width:15.982720pt;}
._31{width:17.194880pt;}
._1e{width:22.301440pt;}
._1f{width:23.396907pt;}
._2f{width:24.770560pt;}
._30{width:26.008747pt;}
._32{width:58.007040pt;}
._2d{width:152.274987pt;}
._2e{width:171.107627pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:5.120000pt;}
.y7f{bottom:5.280000pt;}
.y83{bottom:5.320000pt;}
.y79{bottom:5.440000pt;}
.y80{bottom:5.600000pt;}
.y84{bottom:5.640000pt;}
.y72{bottom:17.093333pt;}
.y7c{bottom:22.720000pt;}
.y7d{bottom:23.040000pt;}
.y75{bottom:27.333333pt;}
.y71{bottom:29.413333pt;}
.y6b{bottom:39.813333pt;}
.y74{bottom:41.893333pt;}
.y70{bottom:43.973333pt;}
.y6a{bottom:52.293333pt;}
.y6{bottom:52.800000pt;}
.y6f{bottom:56.293333pt;}
.y69{bottom:66.693333pt;}
.y73{bottom:68.773333pt;}
.y6e{bottom:70.853333pt;}
.y35{bottom:75.392000pt;}
.y68{bottom:81.253333pt;}
.y6d{bottom:83.333333pt;}
.ybb{bottom:83.552000pt;}
.y34{bottom:92.992000pt;}
.y67{bottom:95.653333pt;}
.y6c{bottom:97.733333pt;}
.yba{bottom:101.152000pt;}
.y63{bottom:107.552000pt;}
.y66{bottom:110.213333pt;}
.y33{bottom:110.592000pt;}
.yb9{bottom:118.752000pt;}
.y62{bottom:125.152000pt;}
.y32{bottom:128.192000pt;}
.y65{bottom:135.066667pt;}
.yb8{bottom:136.506667pt;}
.y61{bottom:142.906667pt;}
.y31{bottom:145.786667pt;}
.yb7{bottom:154.106667pt;}
.y60{bottom:160.506667pt;}
.y30{bottom:163.546667pt;}
.yb6{bottom:171.706667pt;}
.y5f{bottom:178.106667pt;}
.y2f{bottom:181.146667pt;}
.yb5{bottom:189.306667pt;}
.y5e{bottom:195.706667pt;}
.y2e{bottom:198.746667pt;}
.yb4{bottom:206.906667pt;}
.y5d{bottom:213.306667pt;}
.y2d{bottom:216.346667pt;}
.yb3{bottom:224.666667pt;}
.y5c{bottom:231.066667pt;}
.y2c{bottom:233.946667pt;}
.yb2{bottom:242.266667pt;}
.y5b{bottom:248.346667pt;}
.y2b{bottom:251.706667pt;}
.yb1{bottom:259.866667pt;}
.y5a{bottom:266.266667pt;}
.y2a{bottom:269.306667pt;}
.yb0{bottom:277.466667pt;}
.y59{bottom:283.866667pt;}
.y29{bottom:286.906667pt;}
.y82{bottom:287.386667pt;}
.yaf{bottom:295.106667pt;}
.y58{bottom:301.506667pt;}
.y28{bottom:304.546667pt;}
.y81{bottom:305.826667pt;}
.yae{bottom:312.866667pt;}
.y57{bottom:319.266667pt;}
.y27{bottom:322.146667pt;}
.yad{bottom:330.466667pt;}
.y56{bottom:336.866667pt;}
.y26{bottom:339.906667pt;}
.y7e{bottom:341.666667pt;}
.yac{bottom:348.066667pt;}
.y55{bottom:354.466667pt;}
.y25{bottom:357.506667pt;}
.y7b{bottom:360.066667pt;}
.yab{bottom:365.666667pt;}
.y54{bottom:372.066667pt;}
.y24{bottom:375.106667pt;}
.yaa{bottom:383.266667pt;}
.y53{bottom:389.666667pt;}
.y23{bottom:392.706667pt;}
.y7a{bottom:395.906667pt;}
.ya9{bottom:401.026667pt;}
.y52{bottom:407.426667pt;}
.y22{bottom:410.306667pt;}
.y78{bottom:414.306667pt;}
.ya8{bottom:418.626667pt;}
.y51{bottom:425.026667pt;}
.y21{bottom:428.066667pt;}
.y76{bottom:432.546667pt;}
.ya7{bottom:436.226667pt;}
.y20{bottom:445.666667pt;}
.ya6{bottom:453.826667pt;}
.y50{bottom:459.906667pt;}
.y1f{bottom:463.266667pt;}
.ybc{bottom:471.106667pt;}
.ya5{bottom:471.426667pt;}
.y4f{bottom:477.826667pt;}
.y1e{bottom:480.866667pt;}
.ya4{bottom:489.186667pt;}
.y4e{bottom:495.586667pt;}
.y1d{bottom:498.466667pt;}
.ya3{bottom:506.786667pt;}
.y4d{bottom:513.186667pt;}
.y1c{bottom:516.226667pt;}
.ya2{bottom:524.386667pt;}
.y4c{bottom:530.813333pt;}
.y1b{bottom:533.533333pt;}
.ya1{bottom:542.013333pt;}
.y4b{bottom:548.413333pt;}
.y1a{bottom:551.133333pt;}
.ya0{bottom:559.613333pt;}
.y4a{bottom:565.693333pt;}
.y19{bottom:571.133333pt;}
.y9f{bottom:577.373333pt;}
.y49{bottom:583.773333pt;}
.y9e{bottom:594.973333pt;}
.y18{bottom:596.733333pt;}
.y48{bottom:601.373333pt;}
.y9d{bottom:612.573333pt;}
.y17{bottom:614.333333pt;}
.y47{bottom:618.973333pt;}
.y9c{bottom:630.173333pt;}
.y16{bottom:631.933333pt;}
.y46{bottom:636.573333pt;}
.y9b{bottom:647.773333pt;}
.y15{bottom:649.693333pt;}
.y45{bottom:654.173333pt;}
.y9a{bottom:665.533333pt;}
.y14{bottom:667.293333pt;}
.y44{bottom:671.933333pt;}
.y99{bottom:683.133333pt;}
.y13{bottom:684.893333pt;}
.y43{bottom:689.533333pt;}
.y98{bottom:700.733333pt;}
.y12{bottom:702.493333pt;}
.y42{bottom:707.133333pt;}
.y97{bottom:718.333333pt;}
.y11{bottom:720.093333pt;}
.y41{bottom:724.733333pt;}
.y96{bottom:735.933333pt;}
.y10{bottom:737.853333pt;}
.y40{bottom:742.333333pt;}
.y95{bottom:753.693333pt;}
.yf{bottom:755.453333pt;}
.y3f{bottom:760.093333pt;}
.y94{bottom:771.333333pt;}
.ye{bottom:773.093333pt;}
.y3e{bottom:777.733333pt;}
.y93{bottom:788.933333pt;}
.y3d{bottom:795.333333pt;}
.yd{bottom:798.373333pt;}
.y92{bottom:806.533333pt;}
.y3c{bottom:812.933333pt;}
.yc{bottom:816.773333pt;}
.y91{bottom:824.133333pt;}
.yb{bottom:830.053333pt;}
.y3b{bottom:830.533333pt;}
.y90{bottom:841.893333pt;}
.y3a{bottom:847.973333pt;}
.ya{bottom:848.773333pt;}
.y8f{bottom:859.493333pt;}
.y39{bottom:865.573333pt;}
.y9{bottom:869.733333pt;}
.y8e{bottom:877.093333pt;}
.y64{bottom:878.080000pt;}
.y38{bottom:880.453333pt;}
.y8d{bottom:894.693333pt;}
.y8{bottom:897.893333pt;}
.y8c{bottom:912.293333pt;}
.y7{bottom:923.173333pt;}
.y8b{bottom:930.053333pt;}
.y8a{bottom:947.653333pt;}
.y5{bottom:949.413333pt;}
.y89{bottom:965.253333pt;}
.y4{bottom:974.693333pt;}
.y88{bottom:982.853333pt;}
.y3{bottom:999.973333pt;}
.y87{bottom:1000.453333pt;}
.y86{bottom:1018.240000pt;}
.y2{bottom:1025.280000pt;}
.y37{bottom:1035.520000pt;}
.y85{bottom:1035.840000pt;}
.y1{bottom:1055.680000pt;}
.y36{bottom:1061.760000pt;}
.hf{height:17.600000pt;}
.h11{height:17.760000pt;}
.h12{height:17.792000pt;}
.h9{height:33.574375pt;}
.h10{height:35.200000pt;}
.ha{height:38.642500pt;}
.hc{height:44.327188pt;}
.hb{height:45.520312pt;}
.he{height:47.109375pt;}
.h5{height:52.134375pt;}
.h13{height:54.598989pt;}
.h7{height:55.298750pt;}
.h4{height:57.787500pt;}
.h8{height:59.762500pt;}
.h3{height:61.295000pt;}
.h6{height:72.942188pt;}
.h2{height:88.611250pt;}
.hd{height:152.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:186.906667pt;}
.w5{width:372.066667pt;}
.w3{width:559.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x1{left:48.159988pt;}
.x10{left:54.074667pt;}
.x13{left:62.399988pt;}
.x14{left:86.431988pt;}
.x7{left:94.111988pt;}
.x16{left:95.231988pt;}
.x8{left:100.191988pt;}
.xf{left:117.152000pt;}
.x4{left:123.711988pt;}
.x6{left:129.567988pt;}
.x15{left:133.626655pt;}
.x12{left:304.066667pt;}
.xa{left:307.973322pt;}
.x9{left:310.946655pt;}
.xb{left:314.079988pt;}
.x5{left:396.866655pt;}
.xd{left:521.853322pt;}
.xe{left:527.933322pt;}
.xc{left:574.266655pt;}
.x3{left:707.013322pt;}
.x2{left:713.573322pt;}
}




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