
    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_f2b52cb8a17edf8c6880b7ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_de69c5de5cd066fb59ec490f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_1ab0ec75b9dca381b5af9c16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_c459ea4a43d1f2066b30a9a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.021484;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_c4496897c7f8766c3bb9375f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_ee1d21a12151e3d79e58e27b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_08cc47c987d05895f108126d.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0ba863213b771af9d4b7278b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927246;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);}
.v2{vertical-align:-79.200000px;}
.v6{vertical-align:-53.280000px;}
.v5{vertical-align:-50.400000px;}
.v3{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:77.160000px;}
.v1{vertical-align:79.200000px;}
.ls15{letter-spacing:-6.960000px;}
.ls19{letter-spacing:-1.770000px;}
.ls18{letter-spacing:-1.266000px;}
.ls1b{letter-spacing:-0.618000px;}
.ls17{letter-spacing:-0.550200px;}
.ls22{letter-spacing:-0.332400px;}
.ls1d{letter-spacing:-0.303600px;}
.ls1f{letter-spacing:-0.288600px;}
.ls23{letter-spacing:-0.219000px;}
.ls16{letter-spacing:-0.193800px;}
.ls1a{letter-spacing:-0.166200px;}
.ls12{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.128400px;}
.ls21{letter-spacing:-0.079200px;}
.ls13{letter-spacing:-0.064800px;}
.ls24{letter-spacing:-0.013680px;}
.ls11{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009360px;}
.ls20{letter-spacing:0.031680px;}
.lsf{letter-spacing:0.042480px;}
.ls5{letter-spacing:0.042768px;}
.ls6{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.153600px;}
.lsc{letter-spacing:0.158400px;}
.lsb{letter-spacing:0.160800px;}
.ls1e{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.213600px;}
.ls7{letter-spacing:0.303600px;}
.ls1{letter-spacing:0.359280px;}
.ls8{letter-spacing:0.437040px;}
.lsd{letter-spacing:0.470640px;}
.ls3{letter-spacing:0.504720px;}
.ls9{letter-spacing:0.575280px;}
.lse{letter-spacing:1.224720px;}
.ls0{letter-spacing:54.000000px;}
.lsa{letter-spacing:202.716000px;}
.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;}
}
.ws10{word-spacing:-167.760000px;}
.ws8{word-spacing:-53.640720px;}
.ws7{word-spacing:-43.848000px;}
.ws9{word-spacing:-39.328320px;}
.wsa{word-spacing:-39.024720px;}
.ws4{word-spacing:-38.474520px;}
.ws6{word-spacing:-37.758720px;}
.wsb{word-spacing:-37.254720px;}
.ws0{word-spacing:-35.663040px;}
.ws1{word-spacing:-34.268880px;}
.wse{word-spacing:-34.261680px;}
.wsd{word-spacing:-34.055280px;}
.ws3{word-spacing:-33.861480px;}
.wsf{word-spacing:-33.751680px;}
.ws2{word-spacing:-27.095280px;}
.ws5{word-spacing:-26.016480px;}
.wsc{word-spacing:-24.408720px;}
.ws12{word-spacing:0.000000px;}
.ws11{word-spacing:1142.814960px;}
._7{margin-left:-20.808000px;}
._a{margin-left:-16.382880px;}
._f{margin-left:-14.994720px;}
._b{margin-left:-12.947760px;}
._e{margin-left:-11.412000px;}
._c{margin-left:-10.190400px;}
._d{margin-left:-9.061440px;}
._8{margin-left:-7.560000px;}
._6{margin-left:-6.048000px;}
._3{margin-left:-4.752000px;}
._4{margin-left:-3.648000px;}
._1{margin-left:-2.088000px;}
._5{margin-left:-1.068000px;}
._0{width:1.176000px;}
._2{width:3.024000px;}
._11{width:4.295040px;}
._9{width:7.325280px;}
._10{width:37.957440px;}
.fc6{color:transparent;}
.fc4{color:rgb(36,40,79);}
.fc5{color:rgb(69,122,146);}
.fc1{color:rgb(0,102,0);}
.fc3{color:rgb(50,50,50);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:112.320000px;}
.fs9{font-size:120.240000px;}
.fs6{font-size:128.160000px;}
.fsc{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs3{font-size:175.680000px;}
.fs4{font-size:192.240000px;}
.fs8{font-size:192.384000px;}
.fs0{font-size:216.000000px;}
.fs7{font-size:216.144000px;}
.fsb{font-size:239.760000px;}
.fs2{font-size:264.240000px;}
.fs1{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:80.208000px;}
.y76{bottom:168.270000px;}
.y31{bottom:176.145000px;}
.y75{bottom:204.270000px;}
.y30{bottom:212.145000px;}
.y74{bottom:240.270000px;}
.y2f{bottom:248.145000px;}
.y2d{bottom:338.220000px;}
.y25{bottom:398.730000px;}
.y2c{bottom:401.400000px;}
.y24{bottom:456.330000px;}
.y2b{bottom:484.200000px;}
.y2a{bottom:541.800000px;}
.y23{bottom:564.375000px;}
.y29{bottom:599.400000px;}
.y22{bottom:621.975000px;}
.y28{bottom:682.200000px;}
.y21{bottom:729.975000px;}
.y27{bottom:739.800000px;}
.y20{bottom:787.575000px;}
.y26{bottom:797.400000px;}
.y1c{bottom:914.250000px;}
.y2e{bottom:919.260000px;}
.y38{bottom:1023.015000px;}
.y3c{bottom:1037.985000px;}
.y37{bottom:1073.415000px;}
.y3b{bottom:1088.385000px;}
.y1f{bottom:1092.495000px;}
.y36{bottom:1125.435000px;}
.y3a{bottom:1140.405000px;}
.y1e{bottom:1144.515000px;}
.y35{bottom:1194.450000px;}
.y39{bottom:1198.005000px;}
.y1d{bottom:1201.935000px;}
.y5{bottom:1256.835000px;}
.y34{bottom:1259.250000px;}
.yf{bottom:1278.000000px;}
.ye{bottom:1342.290000px;}
.y65{bottom:1343.490000px;}
.y45{bottom:1377.000000px;}
.y44{bottom:1427.400000px;}
.yd{bottom:1450.725000px;}
.y43{bottom:1477.800000px;}
.yc{bottom:1508.325000px;}
.y42{bottom:1528.200000px;}
.yb{bottom:1565.925000px;}
.y41{bottom:1578.600000px;}
.ya{bottom:1623.525000px;}
.y40{bottom:1659.960000px;}
.y9{bottom:1679.505000px;}
.y73{bottom:1686.750000px;}
.y3f{bottom:1712.190000px;}
.y8{bottom:1731.345000px;}
.y7b{bottom:1741.650000px;}
.y11{bottom:1747.470000px;}
.y3e{bottom:1769.790000px;}
.y7{bottom:1789.125000px;}
.y7a{bottom:1799.250000px;}
.y3d{bottom:1827.390000px;}
.y79{bottom:1859.910000px;}
.y6{bottom:1868.550000px;}
.y10{bottom:1902.135000px;}
.y78{bottom:1924.170000px;}
.y12{bottom:1930.965000px;}
.y5f{bottom:2069.820000px;}
.y53{bottom:2109.495000px;}
.y5e{bottom:2127.420000px;}
.y6e{bottom:2130.120000px;}
.y72{bottom:2131.995000px;}
.y52{bottom:2167.095000px;}
.y4a{bottom:2180.130000px;}
.y5d{bottom:2185.020000px;}
.y6d{bottom:2187.720000px;}
.y71{bottom:2189.595000px;}
.y49{bottom:2232.150000px;}
.y6c{bottom:2245.320000px;}
.y70{bottom:2247.195000px;}
.y4e{bottom:2286.210000px;}
.y51{bottom:2299.500000px;}
.y6b{bottom:2302.920000px;}
.y6f{bottom:2304.795000px;}
.y4d{bottom:2343.810000px;}
.y50{bottom:2357.100000px;}
.y6a{bottom:2360.520000px;}
.y64{bottom:2380.530000px;}
.y4f{bottom:2414.700000px;}
.y63{bottom:2432.550000px;}
.y69{bottom:2463.765000px;}
.y55{bottom:2464.770000px;}
.y56{bottom:2479.065000px;}
.y62{bottom:2490.150000px;}
.y4c{bottom:2553.510000px;}
.y61{bottom:2682.540000px;}
.y60{bottom:2734.560000px;}
.y54{bottom:2814.450000px;}
.y48{bottom:2896.350000px;}
.y59{bottom:2933.280000px;}
.y47{bottom:2953.950000px;}
.y58{bottom:2990.880000px;}
.y68{bottom:3018.570000px;}
.y67{bottom:3076.170000px;}
.y5c{bottom:3078.720000px;}
.y57{bottom:3130.275000px;}
.y5b{bottom:3130.740000px;}
.y4b{bottom:3195.255000px;}
.y13{bottom:3327.480000px;}
.y46{bottom:3335.610000px;}
.y5a{bottom:3437.610000px;}
.y66{bottom:3490.815000px;}
.y1b{bottom:3651.450000px;}
.y1a{bottom:3708.510000px;}
.y19{bottom:3794.910000px;}
.y18{bottom:3881.850000px;}
.y17{bottom:3939.450000px;}
.y16{bottom:3997.050000px;}
.y15{bottom:4054.650000px;}
.y33{bottom:4058.670000px;}
.y14{bottom:4112.250000px;}
.y32{bottom:4123.470000px;}
.y77{bottom:4235.835000px;}
.y4{bottom:4273.350000px;}
.y3{bottom:4397.760000px;}
.y2{bottom:4527.360000px;}
.h16{height:97.073437px;}
.he{height:104.211914px;}
.h15{height:104.388047px;}
.h13{height:124.453125px;}
.h7{height:144.987891px;}
.hf{height:145.397461px;}
.h6{height:162.484102px;}
.h8{height:166.614258px;}
.hc{height:166.739063px;}
.hb{height:166.895859px;}
.h14{height:167.020875px;}
.h12{height:173.372695px;}
.hd{height:187.331836px;}
.h5{height:187.523438px;}
.h9{height:187.648453px;}
.h2{height:198.281250px;}
.h10{height:208.151016px;}
.ha{height:229.403672px;}
.h4{height:231.032812px;}
.h11{height:250.532695px;}
.h3{height:375.046875px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x43{left:41.399947px;}
.x40{left:67.859947px;}
.x41{left:96.299947px;}
.x14{left:102.059947px;}
.x23{left:103.823947px;}
.x44{left:108.539947px;}
.x21{left:113.003947px;}
.x20{left:130.103947px;}
.x42{left:132.299947px;}
.x1{left:147.563947px;}
.x3f{left:158.864947px;}
.x2{left:164.594947px;}
.x15{left:169.559947px;}
.x22{left:198.719947px;}
.x24{left:249.299947px;}
.xb{left:272.129947px;}
.xc{left:278.609947px;}
.x1a{left:284.504947px;}
.xd{left:285.509947px;}
.x49{left:286.769947px;}
.xe{left:520.049947px;}
.x46{left:553.964947px;}
.x47{left:560.444947px;}
.x45{left:570.164947px;}
.x48{left:591.044947px;}
.x4{left:674.534947px;}
.x16{left:685.514947px;}
.x25{left:859.679947px;}
.x34{left:912.419947px;}
.x2d{left:949.649947px;}
.x4c{left:999.689947px;}
.x2a{left:1017.509947px;}
.x37{left:1041.479947px;}
.x26{left:1063.904947px;}
.x4b{left:1072.769947px;}
.x3{left:1074.524947px;}
.x4a{left:1076.009947px;}
.x4d{left:1103.144947px;}
.x5{left:1249.634947px;}
.x1b{left:1269.509947px;}
.x30{left:1536.914947px;}
.x3c{left:1677.674947px;}
.x2b{left:1692.899947px;}
.x32{left:1697.294947px;}
.x12{left:1823.369947px;}
.x18{left:1861.589947px;}
.x2c{left:1871.459947px;}
.x3d{left:1882.949947px;}
.x13{left:1890.869947px;}
.x2f{left:1910.669947px;}
.xa{left:1931.909947px;}
.x2e{left:1949.369947px;}
.x3e{left:1958.189947px;}
.x1d{left:1981.694947px;}
.x1e{left:2056.754947px;}
.x1c{left:2062.334947px;}
.x19{left:2091.449947px;}
.x8{left:2197.079947px;}
.x11{left:2205.749947px;}
.x29{left:2208.884947px;}
.x1f{left:2238.734947px;}
.x31{left:2270.339947px;}
.x10{left:2332.829947px;}
.x9{left:2381.219947px;}
.xf{left:2382.734947px;}
.x27{left:2417.114947px;}
.x28{left:2458.154947px;}
.x3a{left:2494.439947px;}
.x38{left:2497.289947px;}
.x33{left:2508.404947px;}
.x39{left:2576.519947px;}
.x7{left:2615.579947px;}
.x6{left:2678.609947px;}
.x3b{left:2815.409947px;}
.x17{left:2827.184947px;}
.x36{left:2931.269947px;}
.x35{left:2940.449947px;}
@media print{
.v2{vertical-align:-70.400000pt;}
.v6{vertical-align:-47.360000pt;}
.v5{vertical-align:-44.800000pt;}
.v3{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:68.586667pt;}
.v1{vertical-align:70.400000pt;}
.ls15{letter-spacing:-6.186667pt;}
.ls19{letter-spacing:-1.573333pt;}
.ls18{letter-spacing:-1.125333pt;}
.ls1b{letter-spacing:-0.549333pt;}
.ls17{letter-spacing:-0.489067pt;}
.ls22{letter-spacing:-0.295467pt;}
.ls1d{letter-spacing:-0.269867pt;}
.ls1f{letter-spacing:-0.256533pt;}
.ls23{letter-spacing:-0.194667pt;}
.ls16{letter-spacing:-0.172267pt;}
.ls1a{letter-spacing:-0.147733pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.114133pt;}
.ls21{letter-spacing:-0.070400pt;}
.ls13{letter-spacing:-0.057600pt;}
.ls24{letter-spacing:-0.012160pt;}
.ls11{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008320pt;}
.ls20{letter-spacing:0.028160pt;}
.lsf{letter-spacing:0.037760pt;}
.ls5{letter-spacing:0.038016pt;}
.ls6{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.136533pt;}
.lsc{letter-spacing:0.140800pt;}
.lsb{letter-spacing:0.142933pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.189867pt;}
.ls7{letter-spacing:0.269867pt;}
.ls1{letter-spacing:0.319360pt;}
.ls8{letter-spacing:0.388480pt;}
.lsd{letter-spacing:0.418347pt;}
.ls3{letter-spacing:0.448640pt;}
.ls9{letter-spacing:0.511360pt;}
.lse{letter-spacing:1.088640pt;}
.ls0{letter-spacing:48.000000pt;}
.lsa{letter-spacing:180.192000pt;}
.ws10{word-spacing:-149.120000pt;}
.ws8{word-spacing:-47.680640pt;}
.ws7{word-spacing:-38.976000pt;}
.ws9{word-spacing:-34.958507pt;}
.wsa{word-spacing:-34.688640pt;}
.ws4{word-spacing:-34.199573pt;}
.ws6{word-spacing:-33.563307pt;}
.wsb{word-spacing:-33.115307pt;}
.ws0{word-spacing:-31.700480pt;}
.ws1{word-spacing:-30.461227pt;}
.wse{word-spacing:-30.454827pt;}
.wsd{word-spacing:-30.271360pt;}
.ws3{word-spacing:-30.099093pt;}
.wsf{word-spacing:-30.001493pt;}
.ws2{word-spacing:-24.084693pt;}
.ws5{word-spacing:-23.125760pt;}
.wsc{word-spacing:-21.696640pt;}
.ws12{word-spacing:0.000000pt;}
.ws11{word-spacing:1015.835520pt;}
._7{margin-left:-18.496000pt;}
._a{margin-left:-14.562560pt;}
._f{margin-left:-13.328640pt;}
._b{margin-left:-11.509120pt;}
._e{margin-left:-10.144000pt;}
._c{margin-left:-9.058133pt;}
._d{margin-left:-8.054613pt;}
._8{margin-left:-6.720000pt;}
._6{margin-left:-5.376000pt;}
._3{margin-left:-4.224000pt;}
._4{margin-left:-3.242667pt;}
._1{margin-left:-1.856000pt;}
._5{margin-left:-0.949333pt;}
._0{width:1.045333pt;}
._2{width:2.688000pt;}
._11{width:3.817813pt;}
._9{width:6.511360pt;}
._10{width:33.739947pt;}
.fsd{font-size:99.840000pt;}
.fs9{font-size:106.880000pt;}
.fs6{font-size:113.920000pt;}
.fsc{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs3{font-size:156.160000pt;}
.fs4{font-size:170.880000pt;}
.fs8{font-size:171.008000pt;}
.fs0{font-size:192.000000pt;}
.fs7{font-size:192.128000pt;}
.fsb{font-size:213.120000pt;}
.fs2{font-size:234.880000pt;}
.fs1{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:71.296000pt;}
.y76{bottom:149.573333pt;}
.y31{bottom:156.573333pt;}
.y75{bottom:181.573333pt;}
.y30{bottom:188.573333pt;}
.y74{bottom:213.573333pt;}
.y2f{bottom:220.573333pt;}
.y2d{bottom:300.640000pt;}
.y25{bottom:354.426667pt;}
.y2c{bottom:356.800000pt;}
.y24{bottom:405.626667pt;}
.y2b{bottom:430.400000pt;}
.y2a{bottom:481.600000pt;}
.y23{bottom:501.666667pt;}
.y29{bottom:532.800000pt;}
.y22{bottom:552.866667pt;}
.y28{bottom:606.400000pt;}
.y21{bottom:648.866667pt;}
.y27{bottom:657.600000pt;}
.y20{bottom:700.066667pt;}
.y26{bottom:708.800000pt;}
.y1c{bottom:812.666667pt;}
.y2e{bottom:817.120000pt;}
.y38{bottom:909.346667pt;}
.y3c{bottom:922.653333pt;}
.y37{bottom:954.146667pt;}
.y3b{bottom:967.453333pt;}
.y1f{bottom:971.106667pt;}
.y36{bottom:1000.386667pt;}
.y3a{bottom:1013.693333pt;}
.y1e{bottom:1017.346667pt;}
.y35{bottom:1061.733333pt;}
.y39{bottom:1064.893333pt;}
.y1d{bottom:1068.386667pt;}
.y5{bottom:1117.186667pt;}
.y34{bottom:1119.333333pt;}
.yf{bottom:1136.000000pt;}
.ye{bottom:1193.146667pt;}
.y65{bottom:1194.213333pt;}
.y45{bottom:1224.000000pt;}
.y44{bottom:1268.800000pt;}
.yd{bottom:1289.533333pt;}
.y43{bottom:1313.600000pt;}
.yc{bottom:1340.733333pt;}
.y42{bottom:1358.400000pt;}
.yb{bottom:1391.933333pt;}
.y41{bottom:1403.200000pt;}
.ya{bottom:1443.133333pt;}
.y40{bottom:1475.520000pt;}
.y9{bottom:1492.893333pt;}
.y73{bottom:1499.333333pt;}
.y3f{bottom:1521.946667pt;}
.y8{bottom:1538.973333pt;}
.y7b{bottom:1548.133333pt;}
.y11{bottom:1553.306667pt;}
.y3e{bottom:1573.146667pt;}
.y7{bottom:1590.333333pt;}
.y7a{bottom:1599.333333pt;}
.y3d{bottom:1624.346667pt;}
.y79{bottom:1653.253333pt;}
.y6{bottom:1660.933333pt;}
.y10{bottom:1690.786667pt;}
.y78{bottom:1710.373333pt;}
.y12{bottom:1716.413333pt;}
.y5f{bottom:1839.840000pt;}
.y53{bottom:1875.106667pt;}
.y5e{bottom:1891.040000pt;}
.y6e{bottom:1893.440000pt;}
.y72{bottom:1895.106667pt;}
.y52{bottom:1926.306667pt;}
.y4a{bottom:1937.893333pt;}
.y5d{bottom:1942.240000pt;}
.y6d{bottom:1944.640000pt;}
.y71{bottom:1946.306667pt;}
.y49{bottom:1984.133333pt;}
.y6c{bottom:1995.840000pt;}
.y70{bottom:1997.506667pt;}
.y4e{bottom:2032.186667pt;}
.y51{bottom:2044.000000pt;}
.y6b{bottom:2047.040000pt;}
.y6f{bottom:2048.706667pt;}
.y4d{bottom:2083.386667pt;}
.y50{bottom:2095.200000pt;}
.y6a{bottom:2098.240000pt;}
.y64{bottom:2116.026667pt;}
.y4f{bottom:2146.400000pt;}
.y63{bottom:2162.266667pt;}
.y69{bottom:2190.013333pt;}
.y55{bottom:2190.906667pt;}
.y56{bottom:2203.613333pt;}
.y62{bottom:2213.466667pt;}
.y4c{bottom:2269.786667pt;}
.y61{bottom:2384.480000pt;}
.y60{bottom:2430.720000pt;}
.y54{bottom:2501.733333pt;}
.y48{bottom:2574.533333pt;}
.y59{bottom:2607.360000pt;}
.y47{bottom:2625.733333pt;}
.y58{bottom:2658.560000pt;}
.y68{bottom:2683.173333pt;}
.y67{bottom:2734.373333pt;}
.y5c{bottom:2736.640000pt;}
.y57{bottom:2782.466667pt;}
.y5b{bottom:2782.880000pt;}
.y4b{bottom:2840.226667pt;}
.y13{bottom:2957.760000pt;}
.y46{bottom:2964.986667pt;}
.y5a{bottom:3055.653333pt;}
.y66{bottom:3102.946667pt;}
.y1b{bottom:3245.733333pt;}
.y1a{bottom:3296.453333pt;}
.y19{bottom:3373.253333pt;}
.y18{bottom:3450.533333pt;}
.y17{bottom:3501.733333pt;}
.y16{bottom:3552.933333pt;}
.y15{bottom:3604.133333pt;}
.y33{bottom:3607.706667pt;}
.y14{bottom:3655.333333pt;}
.y32{bottom:3665.306667pt;}
.y77{bottom:3765.186667pt;}
.y4{bottom:3798.533333pt;}
.y3{bottom:3909.120000pt;}
.y2{bottom:4024.320000pt;}
.h16{height:86.287500pt;}
.he{height:92.632812pt;}
.h15{height:92.789375pt;}
.h13{height:110.625000pt;}
.h7{height:128.878125pt;}
.hf{height:129.242188pt;}
.h6{height:144.430312pt;}
.h8{height:148.101562pt;}
.hc{height:148.212500pt;}
.hb{height:148.351875pt;}
.h14{height:148.463000pt;}
.h12{height:154.109062pt;}
.hd{height:166.517188pt;}
.h5{height:166.687500pt;}
.h9{height:166.798625pt;}
.h2{height:176.250000pt;}
.h10{height:185.023125pt;}
.ha{height:203.914375pt;}
.h4{height:205.362500pt;}
.h11{height:222.695729pt;}
.h3{height:333.375000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x43{left:36.799953pt;}
.x40{left:60.319953pt;}
.x41{left:85.599953pt;}
.x14{left:90.719953pt;}
.x23{left:92.287953pt;}
.x44{left:96.479953pt;}
.x21{left:100.447953pt;}
.x20{left:115.647953pt;}
.x42{left:117.599953pt;}
.x1{left:131.167953pt;}
.x3f{left:141.213286pt;}
.x2{left:146.306619pt;}
.x15{left:150.719953pt;}
.x22{left:176.639953pt;}
.x24{left:221.599953pt;}
.xb{left:241.893286pt;}
.xc{left:247.653286pt;}
.x1a{left:252.893286pt;}
.xd{left:253.786619pt;}
.x49{left:254.906619pt;}
.xe{left:462.266619pt;}
.x46{left:492.413286pt;}
.x47{left:498.173286pt;}
.x45{left:506.813286pt;}
.x48{left:525.373286pt;}
.x4{left:599.586619pt;}
.x16{left:609.346619pt;}
.x25{left:764.159953pt;}
.x34{left:811.039953pt;}
.x2d{left:844.133286pt;}
.x4c{left:888.613286pt;}
.x2a{left:904.453286pt;}
.x37{left:925.759953pt;}
.x26{left:945.693286pt;}
.x4b{left:953.573286pt;}
.x3{left:955.133286pt;}
.x4a{left:956.453286pt;}
.x4d{left:980.573286pt;}
.x5{left:1110.786619pt;}
.x1b{left:1128.453286pt;}
.x30{left:1366.146619pt;}
.x3c{left:1491.266619pt;}
.x2b{left:1504.799953pt;}
.x32{left:1508.706619pt;}
.x12{left:1620.773286pt;}
.x18{left:1654.746619pt;}
.x2c{left:1663.519953pt;}
.x3d{left:1673.733286pt;}
.x13{left:1680.773286pt;}
.x2f{left:1698.373286pt;}
.xa{left:1717.253286pt;}
.x2e{left:1732.773286pt;}
.x3e{left:1740.613286pt;}
.x1d{left:1761.506619pt;}
.x1e{left:1828.226619pt;}
.x1c{left:1833.186619pt;}
.x19{left:1859.066619pt;}
.x8{left:1952.959953pt;}
.x11{left:1960.666619pt;}
.x29{left:1963.453286pt;}
.x1f{left:1989.986619pt;}
.x31{left:2018.079953pt;}
.x10{left:2073.626619pt;}
.x9{left:2116.639953pt;}
.xf{left:2117.986619pt;}
.x27{left:2148.546619pt;}
.x28{left:2185.026619pt;}
.x3a{left:2217.279953pt;}
.x38{left:2219.813286pt;}
.x33{left:2229.693286pt;}
.x39{left:2290.239953pt;}
.x7{left:2324.959953pt;}
.x6{left:2380.986619pt;}
.x3b{left:2502.586619pt;}
.x17{left:2513.053286pt;}
.x36{left:2605.573286pt;}
.x35{left:2613.733286pt;}
}




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