
    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_fb759c1ee06bfa158c0bf6d2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cb2a0d8334e0ce43959ea065.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77de6921cf4a8651af54ab2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_d1c5cc276b77df18444e60ef.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_8a2d0d1c0d4badf66d39aba6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_258a9e2d17ba1df34ecf0819.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5946886f84af07ee6974c4e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_798333c9ae89a185dc4b969d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_791be49bdfccd5ad7361e2ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.288000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.208080px;}
.ls7{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.lsf{letter-spacing:2.880000px;}
.ls2{letter-spacing:3.600000px;}
.ls3{letter-spacing:4.320000px;}
.lsb{letter-spacing:6.300000px;}
.ls12{letter-spacing:12.240000px;}
.ls1{letter-spacing:18.000000px;}
.ls10{letter-spacing:23.760000px;}
.ls14{letter-spacing:25.920000px;}
.lsa{letter-spacing:37.560000px;}
.ls0{letter-spacing:43.200000px;}
.ls5{letter-spacing:46.620000px;}
.lse{letter-spacing:46.980000px;}
.ls15{letter-spacing:54.144000px;}
.ls9{letter-spacing:177.264000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.424000px;}
.ws4{word-spacing:0.000000px;}
._27{margin-left:-12.816000px;}
._0{margin-left:-1.432080px;}
._6{width:1.020000px;}
._1{width:2.020080px;}
._4{width:3.384000px;}
._5{width:4.836000px;}
._9{width:5.931360px;}
._1b{width:7.076160px;}
._24{width:8.331840px;}
._b{width:9.350640px;}
._3{width:10.740240px;}
._2{width:12.072000px;}
._2a{width:13.634640px;}
._25{width:14.994720px;}
._26{width:16.258320px;}
._35{width:17.353440px;}
._14{width:18.701280px;}
._30{width:20.136000px;}
._31{width:21.312000px;}
._10{width:23.081760px;}
._11{width:24.261120px;}
._2f{width:25.778880px;}
._39{width:28.641600px;}
._1c{width:30.326400px;}
._1d{width:32.011200px;}
._7{width:33.022080px;}
._8{width:34.023840px;}
._36{width:35.970480px;}
._23{width:37.348080px;}
._38{width:40.182480px;}
._1e{width:41.783040px;}
._22{width:43.776000px;}
._21{width:45.144000px;}
._16{width:46.523280px;}
._15{width:47.764080px;}
._32{width:50.232000px;}
._33{width:51.912000px;}
._d{width:53.660880px;}
._c{width:54.756000px;}
._2b{width:56.784000px;}
._29{width:57.888000px;}
._f{width:59.726160px;}
._e{width:60.905520px;}
._1f{width:64.727760px;}
._20{width:65.728560px;}
._a{width:67.560480px;}
._13{width:71.772480px;}
._12{width:73.541520px;}
._18{width:74.720880px;}
._17{width:75.900240px;}
._28{width:80.424000px;}
._2d{width:83.808000px;}
._34{width:85.419360px;}
._2e{width:87.408000px;}
._2c{width:126.192000px;}
._37{width:157.528800px;}
._19{width:160.561440px;}
._1a{width:161.572320px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(255,0,0);}
.fc6{color:rgb(31,56,100);}
.fc3{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc2{color:rgb(7,57,118);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.960000px;}
.y4{bottom:12.240000px;}
.y30{bottom:24.660000px;}
.y3{bottom:28.296000px;}
.y2{bottom:31.176000px;}
.y43{bottom:45.360000px;}
.y42{bottom:66.060000px;}
.y47{bottom:77.616000px;}
.y4b{bottom:86.754000px;}
.y41{bottom:86.760000px;}
.y2d{bottom:90.216000px;}
.y6d{bottom:91.476000px;}
.y4a{bottom:107.454000px;}
.y4f{bottom:107.460000px;}
.y2c{bottom:117.936000px;}
.y6c{bottom:119.196000px;}
.y49{bottom:128.154000px;}
.y2b{bottom:145.656000px;}
.y6b{bottom:147.096000px;}
.y48{bottom:148.854000px;}
.y2a{bottom:173.550000px;}
.y6a{bottom:174.810000px;}
.y29{bottom:201.270000px;}
.y69{bottom:202.530000px;}
.y28{bottom:228.990000px;}
.y68{bottom:230.250000px;}
.y46{bottom:243.930000px;}
.y27{bottom:256.710000px;}
.y67{bottom:258.150000px;}
.y26{bottom:284.655000px;}
.y66{bottom:285.915000px;}
.y45{bottom:286.095000px;}
.y25{bottom:312.375000px;}
.y65{bottom:313.635000px;}
.y24{bottom:340.095000px;}
.y64{bottom:341.355000px;}
.y23{bottom:367.815000px;}
.y63{bottom:369.255000px;}
.y44{bottom:390.315000px;}
.y22{bottom:395.715000px;}
.y62{bottom:396.975000px;}
.y21{bottom:423.435000px;}
.y61{bottom:424.695000px;}
.y20{bottom:451.155000px;}
.y60{bottom:452.595000px;}
.y40{bottom:473.835000px;}
.y1f{bottom:479.055000px;}
.y5f{bottom:480.315000px;}
.y1e{bottom:506.775000px;}
.y5e{bottom:508.035000px;}
.y1d{bottom:534.495000px;}
.y5d{bottom:535.755000px;}
.y82{bottom:545.835000px;}
.y1c{bottom:562.215000px;}
.y5c{bottom:563.655000px;}
.y81{bottom:569.445000px;}
.y3f{bottom:578.085000px;}
.y1b{bottom:590.145000px;}
.y5b{bottom:591.405000px;}
.y3e{bottom:599.505000px;}
.y80{bottom:610.845000px;}
.y1a{bottom:617.865000px;}
.y5a{bottom:619.125000px;}
.y3d{bottom:629.205000px;}
.y7f{bottom:631.545000px;}
.y19{bottom:645.585000px;}
.y59{bottom:647.025000px;}
.y7e{bottom:652.245000px;}
.y3c{bottom:656.925000px;}
.y7d{bottom:672.945000px;}
.y18{bottom:673.485000px;}
.y58{bottom:674.745000px;}
.y3b{bottom:684.645000px;}
.y7c{bottom:693.645000px;}
.y17{bottom:701.205000px;}
.y57{bottom:702.465000px;}
.y3a{bottom:712.545000px;}
.y7b{bottom:714.345000px;}
.y16{bottom:728.925000px;}
.y56{bottom:730.185000px;}
.y7a{bottom:735.045000px;}
.y39{bottom:740.265000px;}
.y15{bottom:752.505000px;}
.y79{bottom:755.745000px;}
.y55{bottom:758.085000px;}
.y38{bottom:767.985000px;}
.y14{bottom:773.205000px;}
.y78{bottom:776.445000px;}
.y54{bottom:785.805000px;}
.y13{bottom:793.905000px;}
.y37{bottom:795.705000px;}
.y77{bottom:797.145000px;}
.y53{bottom:813.525000px;}
.y12{bottom:814.605000px;}
.y36{bottom:816.225000px;}
.y76{bottom:817.845000px;}
.y11{bottom:835.305000px;}
.y75{bottom:838.545000px;}
.y52{bottom:841.245000px;}
.y10{bottom:856.050000px;}
.y35{bottom:858.390000px;}
.y74{bottom:859.290000px;}
.y51{bottom:869.190000px;}
.yf{bottom:876.750000px;}
.y73{bottom:879.990000px;}
.ye{bottom:897.450000px;}
.y34{bottom:900.510000px;}
.y50{bottom:900.690000px;}
.y4e{bottom:915.450000px;}
.y72{bottom:921.390000px;}
.yd{bottom:938.850000px;}
.y33{bottom:942.630000px;}
.y71{bottom:943.890000px;}
.yc{bottom:959.550000px;}
.y70{bottom:966.210000px;}
.yb{bottom:980.250000px;}
.y32{bottom:984.750000px;}
.y6f{bottom:993.930000px;}
.ya{bottom:1000.950000px;}
.y9{bottom:1021.650000px;}
.y2f{bottom:1026.870000px;}
.y4d{bottom:1040.370000px;}
.y8{bottom:1042.350000px;}
.y6e{bottom:1049.550000px;}
.y7{bottom:1062.330000px;}
.y2e{bottom:1077.270000px;}
.y6{bottom:1080.870000px;}
.y4c{bottom:1103.190000px;}
.y5{bottom:1104.990000px;}
.y1{bottom:1190.160000px;}
.he{height:20.700000px;}
.h3{height:31.860000px;}
.hb{height:41.400000px;}
.hd{height:41.436000px;}
.h18{height:58.651172px;}
.h9{height:59.343750px;}
.h6{height:60.226875px;}
.h16{height:62.100000px;}
.h14{height:62.261719px;}
.h11{height:63.457031px;}
.h1a{height:69.432187px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.hf{height:72.562500px;}
.h5{height:72.846211px;}
.hc{height:74.004654px;}
.ha{height:74.244727px;}
.h19{height:82.635820px;}
.h2{height:82.676953px;}
.h12{height:82.800000px;}
.h4{height:84.898125px;}
.h13{height:103.500000px;}
.h10{height:103.536000px;}
.h17{height:124.200000px;}
.h15{height:165.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:38.376000px;}
.w4{width:39.276000px;}
.w3{width:75.996000px;}
.w5{width:233.130000px;}
.w8{width:289.830000px;}
.w9{width:403.095000px;}
.w6{width:456.555000px;}
.wa{width:693.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x3{left:27.360000px;}
.x15{left:50.076000px;}
.xf{left:77.400000px;}
.x1{left:84.959987px;}
.x18{left:98.490000px;}
.x10{left:104.070000px;}
.x11{left:117.396000px;}
.x5{left:119.195987px;}
.x16{left:124.596000px;}
.xd{left:127.475987px;}
.x1b{left:133.955987px;}
.x4{left:147.095987px;}
.x8{left:202.709987px;}
.x9{left:268.229987px;}
.x13{left:351.255000px;}
.xb{left:354.494987px;}
.xa{left:367.454987px;}
.x7{left:371.774987px;}
.x2{left:409.215000px;}
.x17{left:415.155000px;}
.x19{left:418.574987px;}
.x6{left:446.474987px;}
.xc{left:467.714987px;}
.x1c{left:599.864987px;}
.xe{left:686.669987px;}
.x1a{left:741.029987px;}
.x14{left:807.989987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.184960pt;}
.ls7{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls2{letter-spacing:3.200000pt;}
.ls3{letter-spacing:3.840000pt;}
.lsb{letter-spacing:5.600000pt;}
.ls12{letter-spacing:10.880000pt;}
.ls1{letter-spacing:16.000000pt;}
.ls10{letter-spacing:21.120000pt;}
.ls14{letter-spacing:23.040000pt;}
.lsa{letter-spacing:33.386667pt;}
.ls0{letter-spacing:38.400000pt;}
.ls5{letter-spacing:41.440000pt;}
.lse{letter-spacing:41.760000pt;}
.ls15{letter-spacing:48.128000pt;}
.ls9{letter-spacing:157.568000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.488000pt;}
.ws4{word-spacing:0.000000pt;}
._27{margin-left:-11.392000pt;}
._0{margin-left:-1.272960pt;}
._6{width:0.906667pt;}
._1{width:1.795627pt;}
._4{width:3.008000pt;}
._5{width:4.298667pt;}
._9{width:5.272320pt;}
._1b{width:6.289920pt;}
._24{width:7.406080pt;}
._b{width:8.311680pt;}
._3{width:9.546880pt;}
._2{width:10.730667pt;}
._2a{width:12.119680pt;}
._25{width:13.328640pt;}
._26{width:14.451840pt;}
._35{width:15.425280pt;}
._14{width:16.623360pt;}
._30{width:17.898667pt;}
._31{width:18.944000pt;}
._10{width:20.517120pt;}
._11{width:21.565440pt;}
._2f{width:22.914560pt;}
._39{width:25.459200pt;}
._1c{width:26.956800pt;}
._1d{width:28.454400pt;}
._7{width:29.352960pt;}
._8{width:30.243413pt;}
._36{width:31.973760pt;}
._23{width:33.198293pt;}
._38{width:35.717760pt;}
._1e{width:37.140480pt;}
._22{width:38.912000pt;}
._21{width:40.128000pt;}
._16{width:41.354027pt;}
._15{width:42.456960pt;}
._32{width:44.650667pt;}
._33{width:46.144000pt;}
._d{width:47.698560pt;}
._c{width:48.672000pt;}
._2b{width:50.474667pt;}
._29{width:51.456000pt;}
._f{width:53.089920pt;}
._e{width:54.138240pt;}
._1f{width:57.535787pt;}
._20{width:58.425387pt;}
._a{width:60.053760pt;}
._13{width:63.797760pt;}
._12{width:65.370240pt;}
._18{width:66.418560pt;}
._17{width:67.466880pt;}
._28{width:71.488000pt;}
._2d{width:74.496000pt;}
._34{width:75.928320pt;}
._2e{width:77.696000pt;}
._2c{width:112.170667pt;}
._37{width:140.025600pt;}
._19{width:142.721280pt;}
._1a{width:143.619840pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.520000pt;}
.y4{bottom:10.880000pt;}
.y30{bottom:21.920000pt;}
.y3{bottom:25.152000pt;}
.y2{bottom:27.712000pt;}
.y43{bottom:40.320000pt;}
.y42{bottom:58.720000pt;}
.y47{bottom:68.992000pt;}
.y4b{bottom:77.114667pt;}
.y41{bottom:77.120000pt;}
.y2d{bottom:80.192000pt;}
.y6d{bottom:81.312000pt;}
.y4a{bottom:95.514667pt;}
.y4f{bottom:95.520000pt;}
.y2c{bottom:104.832000pt;}
.y6c{bottom:105.952000pt;}
.y49{bottom:113.914667pt;}
.y2b{bottom:129.472000pt;}
.y6b{bottom:130.752000pt;}
.y48{bottom:132.314667pt;}
.y2a{bottom:154.266667pt;}
.y6a{bottom:155.386667pt;}
.y29{bottom:178.906667pt;}
.y69{bottom:180.026667pt;}
.y28{bottom:203.546667pt;}
.y68{bottom:204.666667pt;}
.y46{bottom:216.826667pt;}
.y27{bottom:228.186667pt;}
.y67{bottom:229.466667pt;}
.y26{bottom:253.026667pt;}
.y66{bottom:254.146667pt;}
.y45{bottom:254.306667pt;}
.y25{bottom:277.666667pt;}
.y65{bottom:278.786667pt;}
.y24{bottom:302.306667pt;}
.y64{bottom:303.426667pt;}
.y23{bottom:326.946667pt;}
.y63{bottom:328.226667pt;}
.y44{bottom:346.946667pt;}
.y22{bottom:351.746667pt;}
.y62{bottom:352.866667pt;}
.y21{bottom:376.386667pt;}
.y61{bottom:377.506667pt;}
.y20{bottom:401.026667pt;}
.y60{bottom:402.306667pt;}
.y40{bottom:421.186667pt;}
.y1f{bottom:425.826667pt;}
.y5f{bottom:426.946667pt;}
.y1e{bottom:450.466667pt;}
.y5e{bottom:451.586667pt;}
.y1d{bottom:475.106667pt;}
.y5d{bottom:476.226667pt;}
.y82{bottom:485.186667pt;}
.y1c{bottom:499.746667pt;}
.y5c{bottom:501.026667pt;}
.y81{bottom:506.173333pt;}
.y3f{bottom:513.853333pt;}
.y1b{bottom:524.573333pt;}
.y5b{bottom:525.693333pt;}
.y3e{bottom:532.893333pt;}
.y80{bottom:542.973333pt;}
.y1a{bottom:549.213333pt;}
.y5a{bottom:550.333333pt;}
.y3d{bottom:559.293333pt;}
.y7f{bottom:561.373333pt;}
.y19{bottom:573.853333pt;}
.y59{bottom:575.133333pt;}
.y7e{bottom:579.773333pt;}
.y3c{bottom:583.933333pt;}
.y7d{bottom:598.173333pt;}
.y18{bottom:598.653333pt;}
.y58{bottom:599.773333pt;}
.y3b{bottom:608.573333pt;}
.y7c{bottom:616.573333pt;}
.y17{bottom:623.293333pt;}
.y57{bottom:624.413333pt;}
.y3a{bottom:633.373333pt;}
.y7b{bottom:634.973333pt;}
.y16{bottom:647.933333pt;}
.y56{bottom:649.053333pt;}
.y7a{bottom:653.373333pt;}
.y39{bottom:658.013333pt;}
.y15{bottom:668.893333pt;}
.y79{bottom:671.773333pt;}
.y55{bottom:673.853333pt;}
.y38{bottom:682.653333pt;}
.y14{bottom:687.293333pt;}
.y78{bottom:690.173333pt;}
.y54{bottom:698.493333pt;}
.y13{bottom:705.693333pt;}
.y37{bottom:707.293333pt;}
.y77{bottom:708.573333pt;}
.y53{bottom:723.133333pt;}
.y12{bottom:724.093333pt;}
.y36{bottom:725.533333pt;}
.y76{bottom:726.973333pt;}
.y11{bottom:742.493333pt;}
.y75{bottom:745.373333pt;}
.y52{bottom:747.773333pt;}
.y10{bottom:760.933333pt;}
.y35{bottom:763.013333pt;}
.y74{bottom:763.813333pt;}
.y51{bottom:772.613333pt;}
.yf{bottom:779.333333pt;}
.y73{bottom:782.213333pt;}
.ye{bottom:797.733333pt;}
.y34{bottom:800.453333pt;}
.y50{bottom:800.613333pt;}
.y4e{bottom:813.733333pt;}
.y72{bottom:819.013333pt;}
.yd{bottom:834.533333pt;}
.y33{bottom:837.893333pt;}
.y71{bottom:839.013333pt;}
.yc{bottom:852.933333pt;}
.y70{bottom:858.853333pt;}
.yb{bottom:871.333333pt;}
.y32{bottom:875.333333pt;}
.y6f{bottom:883.493333pt;}
.ya{bottom:889.733333pt;}
.y9{bottom:908.133333pt;}
.y2f{bottom:912.773333pt;}
.y4d{bottom:924.773333pt;}
.y8{bottom:926.533333pt;}
.y6e{bottom:932.933333pt;}
.y7{bottom:944.293333pt;}
.y2e{bottom:957.573333pt;}
.y6{bottom:960.773333pt;}
.y4c{bottom:980.613333pt;}
.y5{bottom:982.213333pt;}
.y1{bottom:1057.920000pt;}
.he{height:18.400000pt;}
.h3{height:28.320000pt;}
.hb{height:36.800000pt;}
.hd{height:36.832000pt;}
.h18{height:52.134375pt;}
.h9{height:52.750000pt;}
.h6{height:53.535000pt;}
.h16{height:55.200000pt;}
.h14{height:55.343750pt;}
.h11{height:56.406250pt;}
.h1a{height:61.717500pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.hf{height:64.500000pt;}
.h5{height:64.752187pt;}
.hc{height:65.781915pt;}
.ha{height:65.995312pt;}
.h19{height:73.454062pt;}
.h2{height:73.490625pt;}
.h12{height:73.600000pt;}
.h4{height:75.465000pt;}
.h13{height:92.000000pt;}
.h10{height:92.032000pt;}
.h17{height:110.400000pt;}
.h15{height:147.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:34.112000pt;}
.w4{width:34.912000pt;}
.w3{width:67.552000pt;}
.w5{width:207.226667pt;}
.w8{width:257.626667pt;}
.w9{width:358.306667pt;}
.w6{width:405.826667pt;}
.wa{width:616.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x3{left:24.320000pt;}
.x15{left:44.512000pt;}
.xf{left:68.800000pt;}
.x1{left:75.519988pt;}
.x18{left:87.546667pt;}
.x10{left:92.506667pt;}
.x11{left:104.352000pt;}
.x5{left:105.951988pt;}
.x16{left:110.752000pt;}
.xd{left:113.311988pt;}
.x1b{left:119.071988pt;}
.x4{left:130.751988pt;}
.x8{left:180.186655pt;}
.x9{left:238.426655pt;}
.x13{left:312.226667pt;}
.xb{left:315.106655pt;}
.xa{left:326.626655pt;}
.x7{left:330.466655pt;}
.x2{left:363.746667pt;}
.x17{left:369.026667pt;}
.x19{left:372.066655pt;}
.x6{left:396.866655pt;}
.xc{left:415.746655pt;}
.x1c{left:533.213322pt;}
.xe{left:610.373322pt;}
.x1a{left:658.693322pt;}
.x14{left:718.213322pt;}
}




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