
    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_bce25e492cf2d9c93dc8186d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_bf213b47e5cb56a20cfa0cf0.woff')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_5d050ddcd6fd353365b20064.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_f19516d87e87b3fbb6882657.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_fcaf958be37faf2e8a91d98d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_06daec051cfb763a25719d74.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ff04dc002984e700b3252591.woff')format("woff");}.ff7{font-family:ff7;line-height:0.957520;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_cf9f6d16430008c58f469fb1.woff')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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.093000px;}
.ls6{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls9{letter-spacing:71.922720px;}
.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;}
}
.ws3{word-spacing:-23.598600px;}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws8{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.479800px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.246080px;}
._1{width:2.688000px;}
._6{width:4.013520px;}
._a{width:5.061360px;}
._3{width:6.164160px;}
._5{width:7.206720px;}
._4{width:8.401920px;}
._d{width:9.612480px;}
._11{width:11.772720px;}
._10{width:12.908160px;}
._12{width:16.622160px;}
._13{width:17.868240px;}
._e{width:19.789440px;}
._f{width:20.969280px;}
._b{width:22.230720px;}
._c{width:23.318880px;}
._7{width:26.183760px;}
._8{width:28.293120px;}
._9{width:29.760480px;}
._14{width:31.152720px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:30.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.y6{bottom:47.520000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y3f{bottom:99.216000px;}
.y3c{bottom:118.476000px;}
.y67{bottom:122.976000px;}
.y82{bottom:123.156000px;}
.yc0{bottom:125.856000px;}
.y3b{bottom:135.756000px;}
.y98{bottom:137.196000px;}
.y66{bottom:140.076000px;}
.y81{bottom:140.256000px;}
.ybf{bottom:143.136000px;}
.y3a{bottom:153.030000px;}
.y65{bottom:157.350000px;}
.y80{bottom:157.530000px;}
.ybe{bottom:160.410000px;}
.y39{bottom:170.130000px;}
.y64{bottom:174.630000px;}
.y7f{bottom:174.810000px;}
.ybd{bottom:177.690000px;}
.y38{bottom:187.410000px;}
.y63{bottom:191.910000px;}
.y7e{bottom:192.090000px;}
.ybc{bottom:194.970000px;}
.y37{bottom:204.690000px;}
.y62{bottom:209.190000px;}
.y7d{bottom:209.370000px;}
.ybb{bottom:212.070000px;}
.y36{bottom:221.970000px;}
.y61{bottom:226.290000px;}
.y7c{bottom:226.650000px;}
.yba{bottom:229.350000px;}
.y35{bottom:239.250000px;}
.y60{bottom:243.570000px;}
.y7b{bottom:243.750000px;}
.yb9{bottom:246.630000px;}
.y34{bottom:256.350000px;}
.y5f{bottom:260.850000px;}
.y7a{bottom:261.030000px;}
.yb8{bottom:263.910000px;}
.y33{bottom:273.630000px;}
.y5e{bottom:274.890000px;}
.y79{bottom:278.310000px;}
.yb7{bottom:281.190000px;}
.y32{bottom:290.910000px;}
.y78{bottom:295.590000px;}
.yb6{bottom:298.290000px;}
.y31{bottom:308.190000px;}
.y77{bottom:312.870000px;}
.yb5{bottom:315.570000px;}
.y30{bottom:325.470000px;}
.y76{bottom:330.150000px;}
.yb4{bottom:332.850000px;}
.y2f{bottom:342.795000px;}
.y75{bottom:347.295000px;}
.yb3{bottom:350.175000px;}
.y97{bottom:357.915000px;}
.y2e{bottom:359.895000px;}
.y74{bottom:364.575000px;}
.yb2{bottom:367.455000px;}
.y96{bottom:375.195000px;}
.y2d{bottom:377.175000px;}
.y73{bottom:381.855000px;}
.yb1{bottom:384.735000px;}
.y95{bottom:392.475000px;}
.y2c{bottom:394.455000px;}
.y72{bottom:399.135000px;}
.yb0{bottom:401.835000px;}
.y94{bottom:409.575000px;}
.y2b{bottom:411.735000px;}
.y71{bottom:416.415000px;}
.yaf{bottom:419.115000px;}
.y93{bottom:426.855000px;}
.y2a{bottom:429.015000px;}
.y70{bottom:433.515000px;}
.yae{bottom:436.395000px;}
.ycc{bottom:442.515000px;}
.y92{bottom:444.135000px;}
.y29{bottom:446.295000px;}
.y6f{bottom:450.795000px;}
.yad{bottom:453.675000px;}
.ycb{bottom:459.615000px;}
.y91{bottom:461.415000px;}
.y28{bottom:463.395000px;}
.y6e{bottom:464.835000px;}
.yac{bottom:470.955000px;}
.yca{bottom:476.895000px;}
.y90{bottom:478.695000px;}
.y27{bottom:480.675000px;}
.yab{bottom:488.235000px;}
.yc9{bottom:494.175000px;}
.y8f{bottom:495.795000px;}
.y26{bottom:497.955000px;}
.yaa{bottom:505.335000px;}
.yc8{bottom:511.455000px;}
.y8e{bottom:513.075000px;}
.y25{bottom:515.235000px;}
.ya9{bottom:522.615000px;}
.yc7{bottom:528.735000px;}
.y8d{bottom:530.355000px;}
.y24{bottom:532.515000px;}
.ya8{bottom:539.895000px;}
.yc6{bottom:545.835000px;}
.y8c{bottom:547.635000px;}
.y23{bottom:549.615000px;}
.ya7{bottom:557.175000px;}
.yc5{bottom:563.115000px;}
.y8b{bottom:564.915000px;}
.y22{bottom:565.275000px;}
.ya6{bottom:574.455000px;}
.y21{bottom:575.535000px;}
.yc4{bottom:580.395000px;}
.y8a{bottom:582.195000px;}
.ya5{bottom:591.735000px;}
.y20{bottom:592.815000px;}
.yc3{bottom:597.675000px;}
.y89{bottom:599.295000px;}
.ya4{bottom:608.865000px;}
.y1f{bottom:610.125000px;}
.yc2{bottom:614.985000px;}
.y88{bottom:616.605000px;}
.ya3{bottom:626.145000px;}
.y1e{bottom:627.405000px;}
.yc1{bottom:632.265000px;}
.y87{bottom:633.885000px;}
.ya2{bottom:643.425000px;}
.y1d{bottom:644.685000px;}
.y5d{bottom:649.365000px;}
.y86{bottom:651.165000px;}
.y6d{bottom:656.925000px;}
.ya1{bottom:660.705000px;}
.y1c{bottom:661.785000px;}
.y5c{bottom:666.645000px;}
.y85{bottom:668.445000px;}
.y6c{bottom:674.205000px;}
.ya0{bottom:677.985000px;}
.y1b{bottom:679.065000px;}
.y5b{bottom:683.925000px;}
.y84{bottom:685.725000px;}
.y6b{bottom:691.485000px;}
.y9f{bottom:695.085000px;}
.y1a{bottom:696.345000px;}
.y83{bottom:699.765000px;}
.y5a{bottom:701.205000px;}
.y6a{bottom:708.585000px;}
.y9e{bottom:712.365000px;}
.y19{bottom:713.625000px;}
.y59{bottom:718.485000px;}
.y69{bottom:725.865000px;}
.y9d{bottom:729.645000px;}
.y18{bottom:730.905000px;}
.y58{bottom:735.765000px;}
.y68{bottom:739.905000px;}
.y9c{bottom:746.925000px;}
.y17{bottom:748.005000px;}
.y57{bottom:752.865000px;}
.y9b{bottom:764.205000px;}
.y16{bottom:765.285000px;}
.y56{bottom:770.145000px;}
.y9a{bottom:781.485000px;}
.y15{bottom:782.565000px;}
.y55{bottom:787.425000px;}
.y99{bottom:795.345000px;}
.y14{bottom:799.845000px;}
.y54{bottom:804.705000px;}
.y13{bottom:817.125000px;}
.y53{bottom:821.985000px;}
.y12{bottom:834.405000px;}
.y52{bottom:839.265000px;}
.y11{bottom:851.505000px;}
.y51{bottom:856.365000px;}
.y10{bottom:871.350000px;}
.y50{bottom:873.690000px;}
.y4f{bottom:890.970000px;}
.yf{bottom:891.330000px;}
.y4e{bottom:908.250000px;}
.ye{bottom:908.610000px;}
.y4d{bottom:925.530000px;}
.yd{bottom:926.430000px;}
.y4c{bottom:942.630000px;}
.yc{bottom:947.130000px;}
.y4b{bottom:959.910000px;}
.yb{bottom:969.270000px;}
.y4a{bottom:977.190000px;}
.y49{bottom:994.470000px;}
.ya{bottom:996.810000px;}
.y48{bottom:1011.750000px;}
.y7{bottom:1023.090000px;}
.y47{bottom:1029.030000px;}
.y5{bottom:1039.830000px;}
.y46{bottom:1046.130000px;}
.y45{bottom:1063.410000px;}
.y44{bottom:1080.690000px;}
.y43{bottom:1097.970000px;}
.y42{bottom:1115.250000px;}
.y41{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y40{bottom:1149.660000px;}
.y3e{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3d{bottom:1192.140000px;}
.hd{height:21.336328px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.hb{height:41.726953px;}
.ha{height:42.164648px;}
.hf{height:43.506914px;}
.hc{height:43.681992px;}
.h3{height:50.273438px;}
.h5{height:50.800781px;}
.he{height:52.171875px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:109.476000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:23.940000px;}
.x3{left:33.300000px;}
.x6{left:62.310000px;}
.x12{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x11{left:110.195987px;}
.xb{left:138.275987px;}
.x28{left:151.229987px;}
.x4{left:182.199000px;}
.x17{left:204.329987px;}
.x15{left:234.029987px;}
.x2{left:240.519000px;}
.x19{left:254.594987px;}
.x20{left:263.954987px;}
.x26{left:291.134987px;}
.x1b{left:300.314987px;}
.x1f{left:307.694987px;}
.x1d{left:315.254987px;}
.x24{left:321.014987px;}
.x25{left:323.894987px;}
.xc{left:337.214987px;}
.x5{left:352.695000px;}
.x10{left:368.894987px;}
.x22{left:375.914987px;}
.x16{left:384.374987px;}
.x13{left:386.534987px;}
.x27{left:396.074987px;}
.xe{left:409.244987px;}
.x14{left:433.004987px;}
.xa{left:445.604987px;}
.xd{left:452.264987px;}
.xf{left:459.104987px;}
.x7{left:618.450000px;}
.x1e{left:655.349987px;}
.x1c{left:663.269987px;}
.x1a{left:678.749987px;}
.x23{left:680.189987px;}
.x21{left:685.949987px;}
.x18{left:691.709987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.082667pt;}
.ls6{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls9{letter-spacing:63.931307pt;}
.ws3{word-spacing:-20.976533pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.870933pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.107627pt;}
._1{width:2.389333pt;}
._6{width:3.567573pt;}
._a{width:4.498987pt;}
._3{width:5.479253pt;}
._5{width:6.405973pt;}
._4{width:7.468373pt;}
._d{width:8.544427pt;}
._11{width:10.464640pt;}
._10{width:11.473920pt;}
._12{width:14.775253pt;}
._13{width:15.882880pt;}
._e{width:17.590613pt;}
._f{width:18.639360pt;}
._b{width:19.760640pt;}
._c{width:20.727893pt;}
._7{width:23.274453pt;}
._8{width:25.149440pt;}
._9{width:26.453760pt;}
._14{width:27.691307pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.y6{bottom:42.240000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y3f{bottom:88.192000pt;}
.y3c{bottom:105.312000pt;}
.y67{bottom:109.312000pt;}
.y82{bottom:109.472000pt;}
.yc0{bottom:111.872000pt;}
.y3b{bottom:120.672000pt;}
.y98{bottom:121.952000pt;}
.y66{bottom:124.512000pt;}
.y81{bottom:124.672000pt;}
.ybf{bottom:127.232000pt;}
.y3a{bottom:136.026667pt;}
.y65{bottom:139.866667pt;}
.y80{bottom:140.026667pt;}
.ybe{bottom:142.586667pt;}
.y39{bottom:151.226667pt;}
.y64{bottom:155.226667pt;}
.y7f{bottom:155.386667pt;}
.ybd{bottom:157.946667pt;}
.y38{bottom:166.586667pt;}
.y63{bottom:170.586667pt;}
.y7e{bottom:170.746667pt;}
.ybc{bottom:173.306667pt;}
.y37{bottom:181.946667pt;}
.y62{bottom:185.946667pt;}
.y7d{bottom:186.106667pt;}
.ybb{bottom:188.506667pt;}
.y36{bottom:197.306667pt;}
.y61{bottom:201.146667pt;}
.y7c{bottom:201.466667pt;}
.yba{bottom:203.866667pt;}
.y35{bottom:212.666667pt;}
.y60{bottom:216.506667pt;}
.y7b{bottom:216.666667pt;}
.yb9{bottom:219.226667pt;}
.y34{bottom:227.866667pt;}
.y5f{bottom:231.866667pt;}
.y7a{bottom:232.026667pt;}
.yb8{bottom:234.586667pt;}
.y33{bottom:243.226667pt;}
.y5e{bottom:244.346667pt;}
.y79{bottom:247.386667pt;}
.yb7{bottom:249.946667pt;}
.y32{bottom:258.586667pt;}
.y78{bottom:262.746667pt;}
.yb6{bottom:265.146667pt;}
.y31{bottom:273.946667pt;}
.y77{bottom:278.106667pt;}
.yb5{bottom:280.506667pt;}
.y30{bottom:289.306667pt;}
.y76{bottom:293.466667pt;}
.yb4{bottom:295.866667pt;}
.y2f{bottom:304.706667pt;}
.y75{bottom:308.706667pt;}
.yb3{bottom:311.266667pt;}
.y97{bottom:318.146667pt;}
.y2e{bottom:319.906667pt;}
.y74{bottom:324.066667pt;}
.yb2{bottom:326.626667pt;}
.y96{bottom:333.506667pt;}
.y2d{bottom:335.266667pt;}
.y73{bottom:339.426667pt;}
.yb1{bottom:341.986667pt;}
.y95{bottom:348.866667pt;}
.y2c{bottom:350.626667pt;}
.y72{bottom:354.786667pt;}
.yb0{bottom:357.186667pt;}
.y94{bottom:364.066667pt;}
.y2b{bottom:365.986667pt;}
.y71{bottom:370.146667pt;}
.yaf{bottom:372.546667pt;}
.y93{bottom:379.426667pt;}
.y2a{bottom:381.346667pt;}
.y70{bottom:385.346667pt;}
.yae{bottom:387.906667pt;}
.ycc{bottom:393.346667pt;}
.y92{bottom:394.786667pt;}
.y29{bottom:396.706667pt;}
.y6f{bottom:400.706667pt;}
.yad{bottom:403.266667pt;}
.ycb{bottom:408.546667pt;}
.y91{bottom:410.146667pt;}
.y28{bottom:411.906667pt;}
.y6e{bottom:413.186667pt;}
.yac{bottom:418.626667pt;}
.yca{bottom:423.906667pt;}
.y90{bottom:425.506667pt;}
.y27{bottom:427.266667pt;}
.yab{bottom:433.986667pt;}
.yc9{bottom:439.266667pt;}
.y8f{bottom:440.706667pt;}
.y26{bottom:442.626667pt;}
.yaa{bottom:449.186667pt;}
.yc8{bottom:454.626667pt;}
.y8e{bottom:456.066667pt;}
.y25{bottom:457.986667pt;}
.ya9{bottom:464.546667pt;}
.yc7{bottom:469.986667pt;}
.y8d{bottom:471.426667pt;}
.y24{bottom:473.346667pt;}
.ya8{bottom:479.906667pt;}
.yc6{bottom:485.186667pt;}
.y8c{bottom:486.786667pt;}
.y23{bottom:488.546667pt;}
.ya7{bottom:495.266667pt;}
.yc5{bottom:500.546667pt;}
.y8b{bottom:502.146667pt;}
.y22{bottom:502.466667pt;}
.ya6{bottom:510.626667pt;}
.y21{bottom:511.586667pt;}
.yc4{bottom:515.906667pt;}
.y8a{bottom:517.506667pt;}
.ya5{bottom:525.986667pt;}
.y20{bottom:526.946667pt;}
.yc3{bottom:531.266667pt;}
.y89{bottom:532.706667pt;}
.ya4{bottom:541.213333pt;}
.y1f{bottom:542.333333pt;}
.yc2{bottom:546.653333pt;}
.y88{bottom:548.093333pt;}
.ya3{bottom:556.573333pt;}
.y1e{bottom:557.693333pt;}
.yc1{bottom:562.013333pt;}
.y87{bottom:563.453333pt;}
.ya2{bottom:571.933333pt;}
.y1d{bottom:573.053333pt;}
.y5d{bottom:577.213333pt;}
.y86{bottom:578.813333pt;}
.y6d{bottom:583.933333pt;}
.ya1{bottom:587.293333pt;}
.y1c{bottom:588.253333pt;}
.y5c{bottom:592.573333pt;}
.y85{bottom:594.173333pt;}
.y6c{bottom:599.293333pt;}
.ya0{bottom:602.653333pt;}
.y1b{bottom:603.613333pt;}
.y5b{bottom:607.933333pt;}
.y84{bottom:609.533333pt;}
.y6b{bottom:614.653333pt;}
.y9f{bottom:617.853333pt;}
.y1a{bottom:618.973333pt;}
.y83{bottom:622.013333pt;}
.y5a{bottom:623.293333pt;}
.y6a{bottom:629.853333pt;}
.y9e{bottom:633.213333pt;}
.y19{bottom:634.333333pt;}
.y59{bottom:638.653333pt;}
.y69{bottom:645.213333pt;}
.y9d{bottom:648.573333pt;}
.y18{bottom:649.693333pt;}
.y58{bottom:654.013333pt;}
.y68{bottom:657.693333pt;}
.y9c{bottom:663.933333pt;}
.y17{bottom:664.893333pt;}
.y57{bottom:669.213333pt;}
.y9b{bottom:679.293333pt;}
.y16{bottom:680.253333pt;}
.y56{bottom:684.573333pt;}
.y9a{bottom:694.653333pt;}
.y15{bottom:695.613333pt;}
.y55{bottom:699.933333pt;}
.y99{bottom:706.973333pt;}
.y14{bottom:710.973333pt;}
.y54{bottom:715.293333pt;}
.y13{bottom:726.333333pt;}
.y53{bottom:730.653333pt;}
.y12{bottom:741.693333pt;}
.y52{bottom:746.013333pt;}
.y11{bottom:756.893333pt;}
.y51{bottom:761.213333pt;}
.y10{bottom:774.533333pt;}
.y50{bottom:776.613333pt;}
.y4f{bottom:791.973333pt;}
.yf{bottom:792.293333pt;}
.y4e{bottom:807.333333pt;}
.ye{bottom:807.653333pt;}
.y4d{bottom:822.693333pt;}
.yd{bottom:823.493333pt;}
.y4c{bottom:837.893333pt;}
.yc{bottom:841.893333pt;}
.y4b{bottom:853.253333pt;}
.yb{bottom:861.573333pt;}
.y4a{bottom:868.613333pt;}
.y49{bottom:883.973333pt;}
.ya{bottom:886.053333pt;}
.y48{bottom:899.333333pt;}
.y7{bottom:909.413333pt;}
.y47{bottom:914.693333pt;}
.y5{bottom:924.293333pt;}
.y46{bottom:929.893333pt;}
.y45{bottom:945.253333pt;}
.y44{bottom:960.613333pt;}
.y43{bottom:975.973333pt;}
.y42{bottom:991.333333pt;}
.y41{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y40{bottom:1021.920000pt;}
.y3e{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3d{bottom:1059.680000pt;}
.hd{height:18.965625pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.hb{height:37.090625pt;}
.ha{height:37.479688pt;}
.hf{height:38.672812pt;}
.hc{height:38.828437pt;}
.h3{height:44.687500pt;}
.h5{height:45.156250pt;}
.he{height:46.375000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:97.312000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:21.280000pt;}
.x3{left:29.600000pt;}
.x6{left:55.386667pt;}
.x12{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x11{left:97.951988pt;}
.xb{left:122.911988pt;}
.x28{left:134.426655pt;}
.x4{left:161.954667pt;}
.x17{left:181.626655pt;}
.x15{left:208.026655pt;}
.x2{left:213.794667pt;}
.x19{left:226.306655pt;}
.x20{left:234.626655pt;}
.x26{left:258.786655pt;}
.x1b{left:266.946655pt;}
.x1f{left:273.506655pt;}
.x1d{left:280.226655pt;}
.x24{left:285.346655pt;}
.x25{left:287.906655pt;}
.xc{left:299.746655pt;}
.x5{left:313.506667pt;}
.x10{left:327.906655pt;}
.x22{left:334.146655pt;}
.x16{left:341.666655pt;}
.x13{left:343.586655pt;}
.x27{left:352.066655pt;}
.xe{left:363.773322pt;}
.x14{left:384.893322pt;}
.xa{left:396.093322pt;}
.xd{left:402.013322pt;}
.xf{left:408.093322pt;}
.x7{left:549.733333pt;}
.x1e{left:582.533322pt;}
.x1c{left:589.573322pt;}
.x1a{left:603.333322pt;}
.x23{left:604.613322pt;}
.x21{left:609.733322pt;}
.x18{left:614.853322pt;}
}




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