
    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_1ebe57e09c74f3fbcab8668b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e882b84bb0fc8902bc787776.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6bb9a399456dacd0a1b14428.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_70d3f3e4ec1a77ab2bb61ba0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f82c32357662ef49178dff3b.woff2')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_69c7d7219a11db4da0bfc1c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_775dc0ca12b4771d072d1e5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ea7a72adf5da0ee0a999dec1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999512;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;}
.lse{letter-spacing:-1.644000px;}
.ls8{letter-spacing:-1.236000px;}
.lsc{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.360000px;}
.ls15{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls12{letter-spacing:64.026720px;}
.ls13{letter-spacing:64.746720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.400000px;}
.wse{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-4.656960px;}
._15{margin-left:-3.533520px;}
._11{margin-left:-2.267040px;}
._0{margin-left:-1.080000px;}
._f{width:1.131600px;}
._1{width:2.220000px;}
._13{width:3.223440px;}
._12{width:4.245600px;}
._14{width:6.035760px;}
._19{width:7.297920px;}
._17{width:8.302800px;}
._16{width:9.506160px;}
._6{width:10.800000px;}
._10{width:12.022320px;}
._18{width:13.800480px;}
._1e{width:16.517520px;}
._1c{width:18.111600px;}
._1d{width:19.776720px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._1a{width:444.353280px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y3b{bottom:104.580000px;}
.yc1{bottom:106.740000px;}
.y81{bottom:108.540000px;}
.y94{bottom:109.080000px;}
.y82{bottom:111.780000px;}
.yc4{bottom:115.380000px;}
.y6a{bottom:117.540000px;}
.y3a{bottom:124.380000px;}
.y2{bottom:125.670000px;}
.yc0{bottom:126.720000px;}
.y80{bottom:128.340000px;}
.y93{bottom:129.060000px;}
.yc3{bottom:135.180000px;}
.y69{bottom:137.340000px;}
.y39{bottom:144.180000px;}
.ybf{bottom:146.520000px;}
.y7f{bottom:148.320000px;}
.y92{bottom:148.860000px;}
.yc2{bottom:155.010000px;}
.y68{bottom:157.350000px;}
.y38{bottom:164.190000px;}
.ybe{bottom:166.350000px;}
.y7e{bottom:168.150000px;}
.y91{bottom:168.690000px;}
.y67{bottom:177.150000px;}
.y37{bottom:183.990000px;}
.ybd{bottom:186.150000px;}
.y7d{bottom:187.950000px;}
.y90{bottom:188.490000px;}
.y66{bottom:196.950000px;}
.y36{bottom:203.790000px;}
.ybc{bottom:205.950000px;}
.y7c{bottom:207.750000px;}
.y8f{bottom:208.290000px;}
.y65{bottom:216.750000px;}
.y35{bottom:223.590000px;}
.ybb{bottom:225.930000px;}
.y7b{bottom:227.550000px;}
.y8e{bottom:229.170000px;}
.y64{bottom:236.550000px;}
.y34{bottom:243.390000px;}
.yba{bottom:245.730000px;}
.y7a{bottom:247.530000px;}
.y8d{bottom:250.230000px;}
.y63{bottom:256.530000px;}
.y33{bottom:263.370000px;}
.yb9{bottom:265.530000px;}
.y79{bottom:267.330000px;}
.y8c{bottom:270.030000px;}
.y62{bottom:276.330000px;}
.y32{bottom:283.170000px;}
.yb8{bottom:285.330000px;}
.y78{bottom:287.130000px;}
.y8b{bottom:289.830000px;}
.y61{bottom:296.130000px;}
.y31{bottom:302.970000px;}
.yb7{bottom:305.130000px;}
.y77{bottom:306.930000px;}
.y8a{bottom:309.630000px;}
.y60{bottom:315.930000px;}
.y30{bottom:322.770000px;}
.yb6{bottom:325.110000px;}
.y89{bottom:326.190000px;}
.y76{bottom:326.730000px;}
.y5f{bottom:335.730000px;}
.y2f{bottom:342.570000px;}
.yb5{bottom:344.910000px;}
.y75{bottom:346.710000px;}
.y5e{bottom:355.710000px;}
.y2e{bottom:362.550000px;}
.yb4{bottom:364.710000px;}
.y74{bottom:366.510000px;}
.y5d{bottom:375.510000px;}
.y2d{bottom:382.350000px;}
.yb3{bottom:384.510000px;}
.y73{bottom:386.310000px;}
.y5c{bottom:395.310000px;}
.y2c{bottom:402.195000px;}
.yb2{bottom:404.355000px;}
.y72{bottom:406.155000px;}
.y5b{bottom:415.155000px;}
.y2b{bottom:421.995000px;}
.yb1{bottom:424.335000px;}
.y71{bottom:425.955000px;}
.y5a{bottom:434.955000px;}
.y2a{bottom:441.795000px;}
.yb0{bottom:445.215000px;}
.y70{bottom:445.935000px;}
.y59{bottom:454.935000px;}
.y29{bottom:461.775000px;}
.y6f{bottom:465.735000px;}
.yaf{bottom:466.095000px;}
.y58{bottom:474.735000px;}
.y28{bottom:481.575000px;}
.y6e{bottom:485.535000px;}
.yae{bottom:486.975000px;}
.y57{bottom:494.535000px;}
.y27{bottom:501.375000px;}
.y6d{bottom:505.335000px;}
.yad{bottom:506.775000px;}
.y56{bottom:514.335000px;}
.y26{bottom:521.175000px;}
.y6c{bottom:525.135000px;}
.yac{bottom:526.755000px;}
.y55{bottom:534.135000px;}
.y25{bottom:540.975000px;}
.y6b{bottom:545.115000px;}
.yab{bottom:546.555000px;}
.y54{bottom:554.115000px;}
.y24{bottom:560.775000px;}
.yaa{bottom:566.355000px;}
.y53{bottom:573.915000px;}
.y23{bottom:580.755000px;}
.ya9{bottom:586.155000px;}
.y52{bottom:593.715000px;}
.y22{bottom:600.555000px;}
.ya8{bottom:605.955000px;}
.y51{bottom:613.515000px;}
.y21{bottom:620.355000px;}
.ya7{bottom:625.935000px;}
.y50{bottom:633.315000px;}
.y20{bottom:640.155000px;}
.y88{bottom:644.295000px;}
.ya6{bottom:645.735000px;}
.y4f{bottom:653.325000px;}
.y1f{bottom:659.985000px;}
.y87{bottom:664.125000px;}
.ya5{bottom:665.565000px;}
.y4e{bottom:673.125000px;}
.y1e{bottom:679.965000px;}
.y86{bottom:683.925000px;}
.ya4{bottom:685.365000px;}
.y4d{bottom:692.925000px;}
.y1d{bottom:699.765000px;}
.y85{bottom:703.725000px;}
.ya3{bottom:705.165000px;}
.y4c{bottom:712.725000px;}
.y1c{bottom:719.565000px;}
.y84{bottom:723.525000px;}
.ya2{bottom:725.145000px;}
.y4b{bottom:732.525000px;}
.y1b{bottom:739.365000px;}
.y83{bottom:743.505000px;}
.ya1{bottom:744.945000px;}
.y4a{bottom:752.505000px;}
.y1a{bottom:759.165000px;}
.ya0{bottom:764.745000px;}
.y49{bottom:772.305000px;}
.y19{bottom:779.145000px;}
.y9f{bottom:785.625000px;}
.y48{bottom:792.105000px;}
.y18{bottom:798.945000px;}
.y9e{bottom:805.425000px;}
.y47{bottom:811.905000px;}
.y17{bottom:818.745000px;}
.y9d{bottom:826.305000px;}
.y46{bottom:831.705000px;}
.y16{bottom:838.545000px;}
.y9c{bottom:846.285000px;}
.y45{bottom:851.685000px;}
.y15{bottom:863.565000px;}
.y9b{bottom:866.085000px;}
.y44{bottom:871.485000px;}
.y14{bottom:883.545000px;}
.y9a{bottom:886.965000px;}
.y43{bottom:891.285000px;}
.y13{bottom:898.710000px;}
.y99{bottom:907.890000px;}
.y42{bottom:911.130000px;}
.y12{bottom:919.950000px;}
.y98{bottom:928.770000px;}
.y41{bottom:930.930000px;}
.y11{bottom:943.350000px;}
.y97{bottom:948.750000px;}
.y40{bottom:950.910000px;}
.y96{bottom:968.550000px;}
.y3f{bottom:970.710000px;}
.y10{bottom:975.210000px;}
.y95{bottom:989.430000px;}
.y3e{bottom:990.510000px;}
.yf{bottom:1006.710000px;}
.y3d{bottom:1010.310000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.ha{height:21.780000px;}
.he{height:27.147656px;}
.h7{height:33.480000px;}
.hd{height:41.726953px;}
.hf{height:42.164648px;}
.h12{height:43.506914px;}
.h10{height:45.024258px;}
.h11{height:45.549492px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w3{width:131.976000px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.460000px;}
.x10{left:80.999987px;}
.xd{left:96.515987px;}
.x6{left:100.835987px;}
.x11{left:108.035987px;}
.xa{left:112.715987px;}
.x4{left:118.290000px;}
.xb{left:214.769987px;}
.x7{left:273.854987px;}
.x9{left:301.934987px;}
.xc{left:328.934987px;}
.x8{left:446.504987px;}
.x12{left:468.104987px;}
.x3{left:707.910000px;}
.xf{left:727.169987px;}
.xe{left:757.589987px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-1.461333pt;}
.ls8{letter-spacing:-1.098667pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.320000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls12{letter-spacing:56.912640pt;}
.ls13{letter-spacing:57.552640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.800000pt;}
.wse{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-4.139520pt;}
._15{margin-left:-3.140907pt;}
._11{margin-left:-2.015147pt;}
._0{margin-left:-0.960000pt;}
._f{width:1.005867pt;}
._1{width:1.973333pt;}
._13{width:2.865280pt;}
._12{width:3.773867pt;}
._14{width:5.365120pt;}
._19{width:6.487040pt;}
._17{width:7.380267pt;}
._16{width:8.449920pt;}
._6{width:9.600000pt;}
._10{width:10.686507pt;}
._18{width:12.267093pt;}
._1e{width:14.682240pt;}
._1c{width:16.099200pt;}
._1d{width:17.579307pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._1a{width:394.980693pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y3b{bottom:92.960000pt;}
.yc1{bottom:94.880000pt;}
.y81{bottom:96.480000pt;}
.y94{bottom:96.960000pt;}
.y82{bottom:99.360000pt;}
.yc4{bottom:102.560000pt;}
.y6a{bottom:104.480000pt;}
.y3a{bottom:110.560000pt;}
.y2{bottom:111.706667pt;}
.yc0{bottom:112.640000pt;}
.y80{bottom:114.080000pt;}
.y93{bottom:114.720000pt;}
.yc3{bottom:120.160000pt;}
.y69{bottom:122.080000pt;}
.y39{bottom:128.160000pt;}
.ybf{bottom:130.240000pt;}
.y7f{bottom:131.840000pt;}
.y92{bottom:132.320000pt;}
.yc2{bottom:137.786667pt;}
.y68{bottom:139.866667pt;}
.y38{bottom:145.946667pt;}
.ybe{bottom:147.866667pt;}
.y7e{bottom:149.466667pt;}
.y91{bottom:149.946667pt;}
.y67{bottom:157.466667pt;}
.y37{bottom:163.546667pt;}
.ybd{bottom:165.466667pt;}
.y7d{bottom:167.066667pt;}
.y90{bottom:167.546667pt;}
.y66{bottom:175.066667pt;}
.y36{bottom:181.146667pt;}
.ybc{bottom:183.066667pt;}
.y7c{bottom:184.666667pt;}
.y8f{bottom:185.146667pt;}
.y65{bottom:192.666667pt;}
.y35{bottom:198.746667pt;}
.ybb{bottom:200.826667pt;}
.y7b{bottom:202.266667pt;}
.y8e{bottom:203.706667pt;}
.y64{bottom:210.266667pt;}
.y34{bottom:216.346667pt;}
.yba{bottom:218.426667pt;}
.y7a{bottom:220.026667pt;}
.y8d{bottom:222.426667pt;}
.y63{bottom:228.026667pt;}
.y33{bottom:234.106667pt;}
.yb9{bottom:236.026667pt;}
.y79{bottom:237.626667pt;}
.y8c{bottom:240.026667pt;}
.y62{bottom:245.626667pt;}
.y32{bottom:251.706667pt;}
.yb8{bottom:253.626667pt;}
.y78{bottom:255.226667pt;}
.y8b{bottom:257.626667pt;}
.y61{bottom:263.226667pt;}
.y31{bottom:269.306667pt;}
.yb7{bottom:271.226667pt;}
.y77{bottom:272.826667pt;}
.y8a{bottom:275.226667pt;}
.y60{bottom:280.826667pt;}
.y30{bottom:286.906667pt;}
.yb6{bottom:288.986667pt;}
.y89{bottom:289.946667pt;}
.y76{bottom:290.426667pt;}
.y5f{bottom:298.426667pt;}
.y2f{bottom:304.506667pt;}
.yb5{bottom:306.586667pt;}
.y75{bottom:308.186667pt;}
.y5e{bottom:316.186667pt;}
.y2e{bottom:322.266667pt;}
.yb4{bottom:324.186667pt;}
.y74{bottom:325.786667pt;}
.y5d{bottom:333.786667pt;}
.y2d{bottom:339.866667pt;}
.yb3{bottom:341.786667pt;}
.y73{bottom:343.386667pt;}
.y5c{bottom:351.386667pt;}
.y2c{bottom:357.506667pt;}
.yb2{bottom:359.426667pt;}
.y72{bottom:361.026667pt;}
.y5b{bottom:369.026667pt;}
.y2b{bottom:375.106667pt;}
.yb1{bottom:377.186667pt;}
.y71{bottom:378.626667pt;}
.y5a{bottom:386.626667pt;}
.y2a{bottom:392.706667pt;}
.yb0{bottom:395.746667pt;}
.y70{bottom:396.386667pt;}
.y59{bottom:404.386667pt;}
.y29{bottom:410.466667pt;}
.y6f{bottom:413.986667pt;}
.yaf{bottom:414.306667pt;}
.y58{bottom:421.986667pt;}
.y28{bottom:428.066667pt;}
.y6e{bottom:431.586667pt;}
.yae{bottom:432.866667pt;}
.y57{bottom:439.586667pt;}
.y27{bottom:445.666667pt;}
.y6d{bottom:449.186667pt;}
.yad{bottom:450.466667pt;}
.y56{bottom:457.186667pt;}
.y26{bottom:463.266667pt;}
.y6c{bottom:466.786667pt;}
.yac{bottom:468.226667pt;}
.y55{bottom:474.786667pt;}
.y25{bottom:480.866667pt;}
.y6b{bottom:484.546667pt;}
.yab{bottom:485.826667pt;}
.y54{bottom:492.546667pt;}
.y24{bottom:498.466667pt;}
.yaa{bottom:503.426667pt;}
.y53{bottom:510.146667pt;}
.y23{bottom:516.226667pt;}
.ya9{bottom:521.026667pt;}
.y52{bottom:527.746667pt;}
.y22{bottom:533.826667pt;}
.ya8{bottom:538.626667pt;}
.y51{bottom:545.346667pt;}
.y21{bottom:551.426667pt;}
.ya7{bottom:556.386667pt;}
.y50{bottom:562.946667pt;}
.y20{bottom:569.026667pt;}
.y88{bottom:572.706667pt;}
.ya6{bottom:573.986667pt;}
.y4f{bottom:580.733333pt;}
.y1f{bottom:586.653333pt;}
.y87{bottom:590.333333pt;}
.ya5{bottom:591.613333pt;}
.y4e{bottom:598.333333pt;}
.y1e{bottom:604.413333pt;}
.y86{bottom:607.933333pt;}
.ya4{bottom:609.213333pt;}
.y4d{bottom:615.933333pt;}
.y1d{bottom:622.013333pt;}
.y85{bottom:625.533333pt;}
.ya3{bottom:626.813333pt;}
.y4c{bottom:633.533333pt;}
.y1c{bottom:639.613333pt;}
.y84{bottom:643.133333pt;}
.ya2{bottom:644.573333pt;}
.y4b{bottom:651.133333pt;}
.y1b{bottom:657.213333pt;}
.y83{bottom:660.893333pt;}
.ya1{bottom:662.173333pt;}
.y4a{bottom:668.893333pt;}
.y1a{bottom:674.813333pt;}
.ya0{bottom:679.773333pt;}
.y49{bottom:686.493333pt;}
.y19{bottom:692.573333pt;}
.y9f{bottom:698.333333pt;}
.y48{bottom:704.093333pt;}
.y18{bottom:710.173333pt;}
.y9e{bottom:715.933333pt;}
.y47{bottom:721.693333pt;}
.y17{bottom:727.773333pt;}
.y9d{bottom:734.493333pt;}
.y46{bottom:739.293333pt;}
.y16{bottom:745.373333pt;}
.y9c{bottom:752.253333pt;}
.y45{bottom:757.053333pt;}
.y15{bottom:767.613333pt;}
.y9b{bottom:769.853333pt;}
.y44{bottom:774.653333pt;}
.y14{bottom:785.373333pt;}
.y9a{bottom:788.413333pt;}
.y43{bottom:792.253333pt;}
.y13{bottom:798.853333pt;}
.y99{bottom:807.013333pt;}
.y42{bottom:809.893333pt;}
.y12{bottom:817.733333pt;}
.y98{bottom:825.573333pt;}
.y41{bottom:827.493333pt;}
.y11{bottom:838.533333pt;}
.y97{bottom:843.333333pt;}
.y40{bottom:845.253333pt;}
.y96{bottom:860.933333pt;}
.y3f{bottom:862.853333pt;}
.y10{bottom:866.853333pt;}
.y95{bottom:879.493333pt;}
.y3e{bottom:880.453333pt;}
.yf{bottom:894.853333pt;}
.y3d{bottom:898.053333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.ha{height:19.360000pt;}
.he{height:24.131250pt;}
.h7{height:29.760000pt;}
.hd{height:37.090625pt;}
.hf{height:37.479688pt;}
.h12{height:38.672812pt;}
.h10{height:40.021563pt;}
.h11{height:40.488438pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w3{width:117.312000pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.520000pt;}
.x10{left:71.999988pt;}
.xd{left:85.791988pt;}
.x6{left:89.631988pt;}
.x11{left:96.031988pt;}
.xa{left:100.191988pt;}
.x4{left:105.146667pt;}
.xb{left:190.906655pt;}
.x7{left:243.426655pt;}
.x9{left:268.386655pt;}
.xc{left:292.386655pt;}
.x8{left:396.893322pt;}
.x12{left:416.093322pt;}
.x3{left:629.253333pt;}
.xf{left:646.373322pt;}
.xe{left:673.413322pt;}
.x5{left:737.280000pt;}
}




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