
    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_de15d2736354528aaa056b19.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_276b2b87af8cf8c84eeab71c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_084836204a801e2aaa27f611.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_63f58e4250de30054b6f18c6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_3b2d4ae8741d2be7d4c6892e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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;}
.ls7{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.540000px;}
.lsd{letter-spacing:16.501680px;}
.lsb{letter-spacing:21.546720px;}
.ls4{letter-spacing:46.002720px;}
.ls9{letter-spacing:64.002720px;}
.lsa{letter-spacing:64.026720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.479800px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1c{margin-left:-8.197440px;}
._7{margin-left:-3.645360px;}
._a{margin-left:-2.385360px;}
._0{margin-left:-1.376880px;}
._2{width:1.610880px;}
._b{width:2.766000px;}
._1{width:3.795360px;}
._6{width:5.677200px;}
._d{width:7.230960px;}
._c{width:8.545680px;}
._f{width:10.218960px;}
._e{width:11.473920px;}
._10{width:12.731520px;}
._11{width:13.840800px;}
._8{width:16.078080px;}
._9{width:17.202960px;}
._15{width:18.480720px;}
._14{width:19.529040px;}
._12{width:20.739360px;}
._13{width:22.350240px;}
._24{width:23.545440px;}
._23{width:24.860160px;}
._16{width:27.661440px;}
._17{width:28.895520px;}
._1f{width:34.663440px;}
._20{width:35.913120px;}
._1a{width:46.316640px;}
._18{width:47.329920px;}
._19{width:48.525120px;}
._1b{width:70.038720px;}
._1e{width:84.622800px;}
._5{width:85.656000px;}
._22{width:142.945920px;}
._21{width:144.141120px;}
._1d{width:146.949840px;}
._4{width:705.288000px;}
._3{width:746.796000px;}
.fc5{color:transparent;}
.fc4{color:rgb(17,24,39);}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:57.780000px;}
.y9{bottom:77.580000px;}
.y83{bottom:115.740000px;}
.ya2{bottom:124.416000px;}
.yd4{bottom:126.576000px;}
.y82{bottom:133.056000px;}
.y45{bottom:141.156000px;}
.ya1{bottom:141.696000px;}
.yd3{bottom:143.856000px;}
.y81{bottom:150.330000px;}
.y44{bottom:158.430000px;}
.ya0{bottom:158.970000px;}
.yd2{bottom:161.130000px;}
.y80{bottom:167.610000px;}
.y43{bottom:175.710000px;}
.y9f{bottom:176.250000px;}
.yd1{bottom:178.410000px;}
.y7f{bottom:184.890000px;}
.y42{bottom:192.990000px;}
.y9e{bottom:193.530000px;}
.yd0{bottom:195.690000px;}
.y7e{bottom:202.170000px;}
.y41{bottom:210.270000px;}
.y9d{bottom:210.630000px;}
.ycf{bottom:212.790000px;}
.y7d{bottom:219.270000px;}
.y40{bottom:227.370000px;}
.y9c{bottom:227.910000px;}
.yce{bottom:230.070000px;}
.y7c{bottom:236.550000px;}
.y3f{bottom:244.650000px;}
.y9b{bottom:245.190000px;}
.ycd{bottom:247.350000px;}
.y7b{bottom:253.830000px;}
.y9a{bottom:262.470000px;}
.y3e{bottom:264.090000px;}
.ycc{bottom:264.630000px;}
.y7a{bottom:271.110000px;}
.y99{bottom:279.750000px;}
.y3d{bottom:281.370000px;}
.y79{bottom:288.390000px;}
.ycb{bottom:290.550000px;}
.y98{bottom:297.030000px;}
.y3c{bottom:298.650000px;}
.y78{bottom:305.490000px;}
.yca{bottom:307.830000px;}
.y97{bottom:314.130000px;}
.y3b{bottom:315.930000px;}
.y77{bottom:322.770000px;}
.yc9{bottom:324.930000px;}
.y96{bottom:331.410000px;}
.y3a{bottom:333.210000px;}
.y76{bottom:340.050000px;}
.yc8{bottom:342.210000px;}
.y95{bottom:348.690000px;}
.y39{bottom:350.490000px;}
.y75{bottom:357.330000px;}
.yc7{bottom:359.490000px;}
.y94{bottom:365.970000px;}
.y38{bottom:367.590000px;}
.y74{bottom:374.610000px;}
.yc6{bottom:376.770000px;}
.y93{bottom:383.250000px;}
.y37{bottom:384.870000px;}
.y73{bottom:391.890000px;}
.yc5{bottom:394.050000px;}
.y92{bottom:400.530000px;}
.y36{bottom:402.150000px;}
.y72{bottom:409.035000px;}
.yc4{bottom:411.195000px;}
.y35{bottom:419.475000px;}
.y71{bottom:426.315000px;}
.yc3{bottom:428.475000px;}
.y34{bottom:436.755000px;}
.y70{bottom:443.595000px;}
.yc2{bottom:445.755000px;}
.y91{bottom:452.235000px;}
.y33{bottom:454.035000px;}
.y6f{bottom:460.875000px;}
.yc1{bottom:463.035000px;}
.y32{bottom:471.135000px;}
.y6e{bottom:478.155000px;}
.yc0{bottom:480.315000px;}
.y31{bottom:488.415000px;}
.y6d{bottom:495.435000px;}
.ybf{bottom:497.595000px;}
.y90{bottom:503.895000px;}
.y30{bottom:505.695000px;}
.y6c{bottom:512.535000px;}
.ybe{bottom:514.695000px;}
.y2f{bottom:522.975000px;}
.y6b{bottom:529.815000px;}
.ybd{bottom:531.975000px;}
.y2e{bottom:540.255000px;}
.y6a{bottom:547.095000px;}
.ybc{bottom:549.255000px;}
.y8f{bottom:555.735000px;}
.y2d{bottom:557.535000px;}
.y69{bottom:564.375000px;}
.y2c{bottom:574.635000px;}
.ybb{bottom:575.175000px;}
.y68{bottom:581.655000px;}
.y2b{bottom:591.915000px;}
.yba{bottom:592.455000px;}
.y67{bottom:598.935000px;}
.y8e{bottom:607.395000px;}
.y2a{bottom:609.195000px;}
.yb9{bottom:609.555000px;}
.y66{bottom:616.035000px;}
.y29{bottom:626.475000px;}
.yb8{bottom:627.915000px;}
.y65{bottom:633.315000px;}
.y28{bottom:643.755000px;}
.yb7{bottom:645.195000px;}
.y64{bottom:650.595000px;}
.y8d{bottom:659.235000px;}
.y27{bottom:660.855000px;}
.yb6{bottom:662.475000px;}
.y63{bottom:667.875000px;}
.y26{bottom:678.135000px;}
.yb5{bottom:679.755000px;}
.y8c{bottom:684.975000px;}
.y62{bottom:685.155000px;}
.y25{bottom:695.415000px;}
.yb4{bottom:698.145000px;}
.y61{bottom:702.285000px;}
.y8b{bottom:710.925000px;}
.y24{bottom:712.725000px;}
.yb3{bottom:715.245000px;}
.y60{bottom:719.565000px;}
.y23{bottom:730.005000px;}
.yb2{bottom:732.525000px;}
.y5f{bottom:736.845000px;}
.y22{bottom:747.285000px;}
.yb1{bottom:749.805000px;}
.y5e{bottom:754.125000px;}
.y8a{bottom:762.765000px;}
.y21{bottom:764.385000px;}
.yb0{bottom:767.085000px;}
.y5d{bottom:771.405000px;}
.y20{bottom:781.665000px;}
.yaf{bottom:784.365000px;}
.y89{bottom:788.505000px;}
.y5c{bottom:788.685000px;}
.y1f{bottom:798.945000px;}
.yae{bottom:802.545000px;}
.y5b{bottom:805.785000px;}
.y88{bottom:814.425000px;}
.y1e{bottom:816.225000px;}
.yad{bottom:819.825000px;}
.y5a{bottom:823.065000px;}
.y1d{bottom:833.505000px;}
.yac{bottom:837.105000px;}
.y59{bottom:840.345000px;}
.y1c{bottom:850.785000px;}
.yab{bottom:854.385000px;}
.y58{bottom:857.625000px;}
.y87{bottom:866.265000px;}
.y1b{bottom:867.885000px;}
.yaa{bottom:872.745000px;}
.y57{bottom:874.905000px;}
.y1a{bottom:885.165000px;}
.ya9{bottom:890.025000px;}
.y86{bottom:892.005000px;}
.y56{bottom:892.185000px;}
.y19{bottom:902.445000px;}
.ya8{bottom:907.125000px;}
.y55{bottom:909.285000px;}
.y85{bottom:917.925000px;}
.y18{bottom:919.725000px;}
.ya7{bottom:924.405000px;}
.y54{bottom:926.565000px;}
.y17{bottom:937.005000px;}
.ya6{bottom:942.765000px;}
.y53{bottom:943.845000px;}
.y16{bottom:954.285000px;}
.ya5{bottom:960.045000px;}
.y52{bottom:961.125000px;}
.y84{bottom:969.765000px;}
.y15{bottom:972.105000px;}
.ya4{bottom:977.325000px;}
.y51{bottom:978.405000px;}
.y14{bottom:992.670000px;}
.ya3{bottom:994.650000px;}
.y50{bottom:995.550000px;}
.y13{bottom:1011.570000px;}
.y4f{bottom:1012.830000px;}
.y4e{bottom:1030.110000px;}
.y12{bottom:1030.650000px;}
.y4d{bottom:1047.390000px;}
.y11{bottom:1049.550000px;}
.y4c{bottom:1064.670000px;}
.y10{bottom:1068.450000px;}
.y4b{bottom:1081.950000px;}
.yf{bottom:1087.530000px;}
.y4a{bottom:1099.050000px;}
.ye{bottom:1106.430000px;}
.y49{bottom:1116.330000px;}
.yd{bottom:1125.510000px;}
.y48{bottom:1133.610000px;}
.yc{bottom:1144.770000px;}
.y47{bottom:1150.890000px;}
.yb{bottom:1165.470000px;}
.y46{bottom:1168.170000px;}
.y8{bottom:1187.250000px;}
.y7{bottom:1207.050000px;}
.y6{bottom:1222.890000px;}
.y5{bottom:1240.890000px;}
.y4{bottom:1257.630000px;}
.y3{bottom:1299.780000px;}
.y2{bottom:1319.760000px;}
.y1{bottom:1337.040000px;}
.h5{height:39.049805px;}
.h4{height:42.164648px;}
.h1{height:43.215117px;}
.ha{height:43.506914px;}
.hb{height:44.265586px;}
.hc{height:45.316055px;}
.h7{height:46.736719px;}
.h8{height:47.901094px;}
.h9{height:49.255313px;}
.h3{height:50.800781px;}
.h2{height:52.066406px;}
.h6{height:60.855469px;}
.h0{height:1404.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.035986px;}
.x7{left:117.755986px;}
.x2{left:135.755986px;}
.x14{left:162.029986px;}
.x4{left:169.769986px;}
.xc{left:182.189986px;}
.x18{left:243.029986px;}
.xf{left:254.729986px;}
.x8{left:285.554986px;}
.xb{left:319.754986px;}
.xe{left:324.794986px;}
.x12{left:356.834986px;}
.x13{left:358.994986px;}
.xa{left:368.714986px;}
.x19{left:374.834986px;}
.x17{left:378.614986px;}
.xd{left:383.474986px;}
.x10{left:398.954986px;}
.x16{left:407.414986px;}
.x6{left:409.034986px;}
.x15{left:413.174986px;}
.x11{left:420.734986px;}
.x5{left:424.874986px;}
.x9{left:459.074986px;}
.x3{left:531.104986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.480000pt;}
.lsd{letter-spacing:14.668160pt;}
.lsb{letter-spacing:19.152640pt;}
.ls4{letter-spacing:40.891307pt;}
.ls9{letter-spacing:56.891307pt;}
.lsa{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.870933pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1c{margin-left:-7.286613pt;}
._7{margin-left:-3.240320pt;}
._a{margin-left:-2.120320pt;}
._0{margin-left:-1.223893pt;}
._2{width:1.431893pt;}
._b{width:2.458667pt;}
._1{width:3.373653pt;}
._6{width:5.046400pt;}
._d{width:6.427520pt;}
._c{width:7.596160pt;}
._f{width:9.083520pt;}
._e{width:10.199040pt;}
._10{width:11.316907pt;}
._11{width:12.302933pt;}
._8{width:14.291627pt;}
._9{width:15.291520pt;}
._15{width:16.427307pt;}
._14{width:17.359147pt;}
._12{width:18.434987pt;}
._13{width:19.866880pt;}
._24{width:20.929280pt;}
._23{width:22.097920pt;}
._16{width:24.587947pt;}
._17{width:25.684907pt;}
._1f{width:30.811947pt;}
._20{width:31.922773pt;}
._1a{width:41.170347pt;}
._18{width:42.071040pt;}
._19{width:43.133440pt;}
._1b{width:62.256640pt;}
._1e{width:75.220267pt;}
._5{width:76.138667pt;}
._22{width:127.063040pt;}
._21{width:128.125440pt;}
._1d{width:130.622080pt;}
._4{width:626.922667pt;}
._3{width:663.818667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:51.360000pt;}
.y9{bottom:68.960000pt;}
.y83{bottom:102.880000pt;}
.ya2{bottom:110.592000pt;}
.yd4{bottom:112.512000pt;}
.y82{bottom:118.272000pt;}
.y45{bottom:125.472000pt;}
.ya1{bottom:125.952000pt;}
.yd3{bottom:127.872000pt;}
.y81{bottom:133.626667pt;}
.y44{bottom:140.826667pt;}
.ya0{bottom:141.306667pt;}
.yd2{bottom:143.226667pt;}
.y80{bottom:148.986667pt;}
.y43{bottom:156.186667pt;}
.y9f{bottom:156.666667pt;}
.yd1{bottom:158.586667pt;}
.y7f{bottom:164.346667pt;}
.y42{bottom:171.546667pt;}
.y9e{bottom:172.026667pt;}
.yd0{bottom:173.946667pt;}
.y7e{bottom:179.706667pt;}
.y41{bottom:186.906667pt;}
.y9d{bottom:187.226667pt;}
.ycf{bottom:189.146667pt;}
.y7d{bottom:194.906667pt;}
.y40{bottom:202.106667pt;}
.y9c{bottom:202.586667pt;}
.yce{bottom:204.506667pt;}
.y7c{bottom:210.266667pt;}
.y3f{bottom:217.466667pt;}
.y9b{bottom:217.946667pt;}
.ycd{bottom:219.866667pt;}
.y7b{bottom:225.626667pt;}
.y9a{bottom:233.306667pt;}
.y3e{bottom:234.746667pt;}
.ycc{bottom:235.226667pt;}
.y7a{bottom:240.986667pt;}
.y99{bottom:248.666667pt;}
.y3d{bottom:250.106667pt;}
.y79{bottom:256.346667pt;}
.ycb{bottom:258.266667pt;}
.y98{bottom:264.026667pt;}
.y3c{bottom:265.466667pt;}
.y78{bottom:271.546667pt;}
.yca{bottom:273.626667pt;}
.y97{bottom:279.226667pt;}
.y3b{bottom:280.826667pt;}
.y77{bottom:286.906667pt;}
.yc9{bottom:288.826667pt;}
.y96{bottom:294.586667pt;}
.y3a{bottom:296.186667pt;}
.y76{bottom:302.266667pt;}
.yc8{bottom:304.186667pt;}
.y95{bottom:309.946667pt;}
.y39{bottom:311.546667pt;}
.y75{bottom:317.626667pt;}
.yc7{bottom:319.546667pt;}
.y94{bottom:325.306667pt;}
.y38{bottom:326.746667pt;}
.y74{bottom:332.986667pt;}
.yc6{bottom:334.906667pt;}
.y93{bottom:340.666667pt;}
.y37{bottom:342.106667pt;}
.y73{bottom:348.346667pt;}
.yc5{bottom:350.266667pt;}
.y92{bottom:356.026667pt;}
.y36{bottom:357.466667pt;}
.y72{bottom:363.586667pt;}
.yc4{bottom:365.506667pt;}
.y35{bottom:372.866667pt;}
.y71{bottom:378.946667pt;}
.yc3{bottom:380.866667pt;}
.y34{bottom:388.226667pt;}
.y70{bottom:394.306667pt;}
.yc2{bottom:396.226667pt;}
.y91{bottom:401.986667pt;}
.y33{bottom:403.586667pt;}
.y6f{bottom:409.666667pt;}
.yc1{bottom:411.586667pt;}
.y32{bottom:418.786667pt;}
.y6e{bottom:425.026667pt;}
.yc0{bottom:426.946667pt;}
.y31{bottom:434.146667pt;}
.y6d{bottom:440.386667pt;}
.ybf{bottom:442.306667pt;}
.y90{bottom:447.906667pt;}
.y30{bottom:449.506667pt;}
.y6c{bottom:455.586667pt;}
.ybe{bottom:457.506667pt;}
.y2f{bottom:464.866667pt;}
.y6b{bottom:470.946667pt;}
.ybd{bottom:472.866667pt;}
.y2e{bottom:480.226667pt;}
.y6a{bottom:486.306667pt;}
.ybc{bottom:488.226667pt;}
.y8f{bottom:493.986667pt;}
.y2d{bottom:495.586667pt;}
.y69{bottom:501.666667pt;}
.y2c{bottom:510.786667pt;}
.ybb{bottom:511.266667pt;}
.y68{bottom:517.026667pt;}
.y2b{bottom:526.146667pt;}
.yba{bottom:526.626667pt;}
.y67{bottom:532.386667pt;}
.y8e{bottom:539.906667pt;}
.y2a{bottom:541.506667pt;}
.yb9{bottom:541.826667pt;}
.y66{bottom:547.586667pt;}
.y29{bottom:556.866667pt;}
.yb8{bottom:558.146667pt;}
.y65{bottom:562.946667pt;}
.y28{bottom:572.226667pt;}
.yb7{bottom:573.506667pt;}
.y64{bottom:578.306667pt;}
.y8d{bottom:585.986667pt;}
.y27{bottom:587.426667pt;}
.yb6{bottom:588.866667pt;}
.y63{bottom:593.666667pt;}
.y26{bottom:602.786667pt;}
.yb5{bottom:604.226667pt;}
.y8c{bottom:608.866667pt;}
.y62{bottom:609.026667pt;}
.y25{bottom:618.146667pt;}
.yb4{bottom:620.573333pt;}
.y61{bottom:624.253333pt;}
.y8b{bottom:631.933333pt;}
.y24{bottom:633.533333pt;}
.yb3{bottom:635.773333pt;}
.y60{bottom:639.613333pt;}
.y23{bottom:648.893333pt;}
.yb2{bottom:651.133333pt;}
.y5f{bottom:654.973333pt;}
.y22{bottom:664.253333pt;}
.yb1{bottom:666.493333pt;}
.y5e{bottom:670.333333pt;}
.y8a{bottom:678.013333pt;}
.y21{bottom:679.453333pt;}
.yb0{bottom:681.853333pt;}
.y5d{bottom:685.693333pt;}
.y20{bottom:694.813333pt;}
.yaf{bottom:697.213333pt;}
.y89{bottom:700.893333pt;}
.y5c{bottom:701.053333pt;}
.y1f{bottom:710.173333pt;}
.yae{bottom:713.373333pt;}
.y5b{bottom:716.253333pt;}
.y88{bottom:723.933333pt;}
.y1e{bottom:725.533333pt;}
.yad{bottom:728.733333pt;}
.y5a{bottom:731.613333pt;}
.y1d{bottom:740.893333pt;}
.yac{bottom:744.093333pt;}
.y59{bottom:746.973333pt;}
.y1c{bottom:756.253333pt;}
.yab{bottom:759.453333pt;}
.y58{bottom:762.333333pt;}
.y87{bottom:770.013333pt;}
.y1b{bottom:771.453333pt;}
.yaa{bottom:775.773333pt;}
.y57{bottom:777.693333pt;}
.y1a{bottom:786.813333pt;}
.ya9{bottom:791.133333pt;}
.y86{bottom:792.893333pt;}
.y56{bottom:793.053333pt;}
.y19{bottom:802.173333pt;}
.ya8{bottom:806.333333pt;}
.y55{bottom:808.253333pt;}
.y85{bottom:815.933333pt;}
.y18{bottom:817.533333pt;}
.ya7{bottom:821.693333pt;}
.y54{bottom:823.613333pt;}
.y17{bottom:832.893333pt;}
.ya6{bottom:838.013333pt;}
.y53{bottom:838.973333pt;}
.y16{bottom:848.253333pt;}
.ya5{bottom:853.373333pt;}
.y52{bottom:854.333333pt;}
.y84{bottom:862.013333pt;}
.y15{bottom:864.093333pt;}
.ya4{bottom:868.733333pt;}
.y51{bottom:869.693333pt;}
.y14{bottom:882.373333pt;}
.ya3{bottom:884.133333pt;}
.y50{bottom:884.933333pt;}
.y13{bottom:899.173333pt;}
.y4f{bottom:900.293333pt;}
.y4e{bottom:915.653333pt;}
.y12{bottom:916.133333pt;}
.y4d{bottom:931.013333pt;}
.y11{bottom:932.933333pt;}
.y4c{bottom:946.373333pt;}
.y10{bottom:949.733333pt;}
.y4b{bottom:961.733333pt;}
.yf{bottom:966.693333pt;}
.y4a{bottom:976.933333pt;}
.ye{bottom:983.493333pt;}
.y49{bottom:992.293333pt;}
.yd{bottom:1000.453333pt;}
.y48{bottom:1007.653333pt;}
.yc{bottom:1017.573333pt;}
.y47{bottom:1023.013333pt;}
.yb{bottom:1035.973333pt;}
.y46{bottom:1038.373333pt;}
.y8{bottom:1055.333333pt;}
.y7{bottom:1072.933333pt;}
.y6{bottom:1087.013333pt;}
.y5{bottom:1103.013333pt;}
.y4{bottom:1117.893333pt;}
.y3{bottom:1155.360000pt;}
.y2{bottom:1173.120000pt;}
.y1{bottom:1188.480000pt;}
.h5{height:34.710938pt;}
.h4{height:37.479688pt;}
.h1{height:38.413438pt;}
.ha{height:38.672812pt;}
.hb{height:39.347188pt;}
.hc{height:40.280938pt;}
.h7{height:41.543750pt;}
.h8{height:42.578750pt;}
.h9{height:43.782500pt;}
.h3{height:45.156250pt;}
.h2{height:46.281250pt;}
.h6{height:54.093750pt;}
.h0{height:1248.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x7{left:104.671988pt;}
.x2{left:120.671988pt;}
.x14{left:144.026655pt;}
.x4{left:150.906655pt;}
.xc{left:161.946655pt;}
.x18{left:216.026655pt;}
.xf{left:226.426655pt;}
.x8{left:253.826655pt;}
.xb{left:284.226655pt;}
.xe{left:288.706655pt;}
.x12{left:317.186655pt;}
.x13{left:319.106655pt;}
.xa{left:327.746655pt;}
.x19{left:333.186655pt;}
.x17{left:336.546655pt;}
.xd{left:340.866655pt;}
.x10{left:354.626655pt;}
.x16{left:362.146655pt;}
.x6{left:363.586655pt;}
.x15{left:367.266655pt;}
.x11{left:373.986655pt;}
.x5{left:377.666655pt;}
.x9{left:408.066655pt;}
.x3{left:472.093321pt;}
}




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