
    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_e8193fe22d349df303ad6f2b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_06ba8cc0464d7082779dad5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_3f358b8574f1b36df3c9fd42.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_660ded44e44ec0ea355df130.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ebdd57ab1b961f5351ede3e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.414600px;}
.lsc{letter-spacing:-0.341400px;}
.ls11{letter-spacing:-0.306600px;}
.ls3{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.269400px;}
.ls9{letter-spacing:0.281280px;}
.ls8{letter-spacing:0.305280px;}
.ls6{letter-spacing:0.305400px;}
.lsf{letter-spacing:1.025280px;}
.ls7{letter-spacing:59.345280px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws6{word-spacing:-23.077320px;}
.ws4{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.ws0{word-spacing:-18.109320px;}
.ws2{word-spacing:-17.388720px;}
.ws8{word-spacing:-16.613280px;}
.wsb{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.506480px;}
.wsa{word-spacing:-16.306680px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.061280px;}
._2{width:1.137600px;}
._3{width:2.492160px;}
._4{width:59.487840px;}
._7{width:63.897120px;}
._5{width:145.887840px;}
._6{width:845.885280px;}
._0{width:1667.405280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:3.240000px;}
.y5f{bottom:3.420000px;}
.y7b{bottom:3.465000px;}
.yc0{bottom:7.740000px;}
.y7e{bottom:7.920000px;}
.ybc{bottom:12.600000px;}
.y4{bottom:19.620000px;}
.ycc{bottom:24.120000px;}
.y6b{bottom:24.300000px;}
.y74{bottom:24.480000px;}
.y7a{bottom:24.525000px;}
.y5{bottom:30.960000px;}
.ybb{bottom:33.480000px;}
.yc6{bottom:45.180000px;}
.y6a{bottom:45.360000px;}
.ya1{bottom:45.405000px;}
.y79{bottom:45.585000px;}
.y6{bottom:49.140000px;}
.yba{bottom:54.540000px;}
.y3{bottom:61.560000px;}
.yc5{bottom:66.240000px;}
.ycb{bottom:66.285000px;}
.y69{bottom:66.420000px;}
.y78{bottom:66.465000px;}
.yb9{bottom:75.600000px;}
.y29{bottom:80.100000px;}
.yca{bottom:87.165000px;}
.y68{bottom:87.300000px;}
.yad{bottom:87.345000px;}
.y73{bottom:87.480000px;}
.y77{bottom:87.525000px;}
.yb8{bottom:96.480000px;}
.yc4{bottom:108.210000px;}
.yc9{bottom:108.225000px;}
.y67{bottom:108.360000px;}
.ya0{bottom:108.405000px;}
.y76{bottom:108.585000px;}
.y2{bottom:113.256000px;}
.yb7{bottom:117.585000px;}
.yc3{bottom:129.270000px;}
.ya9{bottom:129.420000px;}
.y72{bottom:129.450000px;}
.y66{bottom:129.465000px;}
.yb6{bottom:138.645000px;}
.y83{bottom:146.916000px;}
.y27{bottom:147.096000px;}
.yc2{bottom:150.330000px;}
.y65{bottom:150.345000px;}
.ya8{bottom:150.480000px;}
.y71{bottom:150.510000px;}
.y9f{bottom:150.525000px;}
.yb5{bottom:159.525000px;}
.y4d{bottom:159.870000px;}
.y82{bottom:162.930000px;}
.y26{bottom:168.870000px;}
.ya7{bottom:171.360000px;}
.y70{bottom:171.390000px;}
.y64{bottom:171.405000px;}
.y81{bottom:180.570000px;}
.yb4{bottom:180.585000px;}
.y4c{bottom:181.830000px;}
.y80{bottom:186.510000px;}
.yd1{bottom:186.690000px;}
.y25{bottom:190.830000px;}
.y6f{bottom:192.450000px;}
.y63{bottom:192.465000px;}
.yb3{bottom:201.645000px;}
.y4b{bottom:204.690000px;}
.yd0{bottom:208.650000px;}
.y24{bottom:212.610000px;}
.y62{bottom:213.345000px;}
.y6e{bottom:213.510000px;}
.y9e{bottom:213.525000px;}
.y7f{bottom:215.490000px;}
.yb2{bottom:222.525000px;}
.y4a{bottom:226.470000px;}
.ycf{bottom:230.430000px;}
.y6d{bottom:234.390000px;}
.y9d{bottom:234.405000px;}
.yb1{bottom:243.585000px;}
.y23{bottom:249.150000px;}
.yce{bottom:252.210000px;}
.y9c{bottom:255.465000px;}
.y49{bottom:264.270000px;}
.yb0{bottom:264.645000px;}
.y22{bottom:271.290000px;}
.ycd{bottom:273.990000px;}
.yac{bottom:276.345000px;}
.y7d{bottom:276.510000px;}
.y9b{bottom:276.525000px;}
.yaf{bottom:285.525000px;}
.y48{bottom:286.230000px;}
.y21{bottom:293.070000px;}
.ya6{bottom:297.405000px;}
.y9a{bottom:297.435000px;}
.yaa{bottom:301.350000px;}
.y47{bottom:308.010000px;}
.y7c{bottom:311.250000px;}
.yc8{bottom:313.590000px;}
.y20{bottom:314.850000px;}
.ya5{bottom:318.465000px;}
.y99{bottom:318.495000px;}
.y46{bottom:329.790000px;}
.y84{bottom:331.590000px;}
.y1f{bottom:336.630000px;}
.yab{bottom:339.375000px;}
.ya4{bottom:339.525000px;}
.y98{bottom:339.555000px;}
.y1e{bottom:358.410000px;}
.ya3{bottom:360.405000px;}
.y97{bottom:360.435000px;}
.y45{bottom:362.370000px;}
.y75{bottom:362.550000px;}
.y96{bottom:381.495000px;}
.y1d{bottom:395.175000px;}
.y95{bottom:402.555000px;}
.y1c{bottom:417.135000px;}
.y94{bottom:423.435000px;}
.y44{bottom:424.335000px;}
.y1b{bottom:438.915000px;}
.y93{bottom:444.495000px;}
.y43{bottom:446.295000px;}
.yc7{bottom:448.815000px;}
.y1a{bottom:460.875000px;}
.y92{bottom:465.555000px;}
.y42{bottom:468.075000px;}
.y19{bottom:482.655000px;}
.y91{bottom:486.435000px;}
.y41{bottom:490.035000px;}
.y6c{bottom:497.955000px;}
.y18{bottom:504.435000px;}
.y90{bottom:507.495000px;}
.y40{bottom:511.815000px;}
.yc1{bottom:521.175000px;}
.y17{bottom:526.215000px;}
.y8f{bottom:528.555000px;}
.y3f{bottom:533.595000px;}
.y8e{bottom:549.435000px;}
.y3e{bottom:555.375000px;}
.y16{bottom:562.935000px;}
.y8d{bottom:570.540000px;}
.y15{bottom:584.895000px;}
.y8c{bottom:591.600000px;}
.y3d{bottom:592.095000px;}
.y14{bottom:606.675000px;}
.y8b{bottom:612.480000px;}
.y3c{bottom:614.055000px;}
.y13{bottom:628.485000px;}
.y8a{bottom:633.540000px;}
.y3b{bottom:636.945000px;}
.y12{bottom:650.445000px;}
.y89{bottom:654.600000px;}
.y3a{bottom:658.905000px;}
.y11{bottom:672.225000px;}
.y88{bottom:675.480000px;}
.y39{bottom:681.765000px;}
.y87{bottom:696.540000px;}
.ybf{bottom:698.505000px;}
.y38{bottom:703.545000px;}
.y10{bottom:704.805000px;}
.y5c{bottom:706.065000px;}
.ya2{bottom:709.665000px;}
.y86{bottom:717.600000px;}
.y37{bottom:726.585000px;}
.ybd{bottom:733.245000px;}
.y85{bottom:738.480000px;}
.y5b{bottom:742.785000px;}
.y36{bottom:748.365000px;}
.y61{bottom:759.345000px;}
.y5a{bottom:764.745000px;}
.yf{bottom:765.465000px;}
.yae{bottom:784.545000px;}
.y35{bottom:786.165000px;}
.y59{bottom:786.705000px;}
.ye{bottom:798.405000px;}
.y34{bottom:808.125000px;}
.y58{bottom:808.485000px;}
.y33{bottom:829.905000px;}
.y57{bottom:830.265000px;}
.yd{bottom:831.165000px;}
.y32{bottom:851.685000px;}
.yc{bottom:864.105000px;}
.y56{bottom:866.985000px;}
.y31{bottom:873.465000px;}
.y55{bottom:888.990000px;}
.y30{bottom:895.470000px;}
.yb{bottom:896.910000px;}
.y54{bottom:911.850000px;}
.y2f{bottom:928.050000px;}
.ya{bottom:932.730000px;}
.y53{bottom:934.890000px;}
.y9{bottom:967.290000px;}
.y52{bottom:972.510000px;}
.y2e{bottom:989.790000px;}
.y60{bottom:999.690000px;}
.y51{bottom:1009.410000px;}
.y2d{bottom:1011.750000px;}
.y8{bottom:1028.310000px;}
.y5e{bottom:1029.930000px;}
.y50{bottom:1031.370000px;}
.y2c{bottom:1033.710000px;}
.y4f{bottom:1054.410000px;}
.y2b{bottom:1055.490000px;}
.y7{bottom:1065.930000px;}
.y5d{bottom:1073.130000px;}
.y4e{bottom:1076.190000px;}
.y2a{bottom:1077.270000px;}
.y1{bottom:1190.340000px;}
.y28{bottom:1217.520000px;}
.hd{height:20.880000px;}
.hb{height:21.060000px;}
.h14{height:25.560000px;}
.h4{height:30.960000px;}
.h15{height:37.457578px;}
.h9{height:40.605469px;}
.h13{height:42.120000px;}
.h3{height:43.269961px;}
.h1a{height:44.936719px;}
.ha{height:48.436523px;}
.hf{height:48.871406px;}
.hc{height:49.809375px;}
.h7{height:53.603086px;}
.h2{height:59.415469px;}
.h10{height:61.217578px;}
.h1c{height:63.000000px;}
.h8{height:63.344531px;}
.h5{height:64.582031px;}
.h6{height:85.542187px;}
.h12{height:126.036000px;}
.h1b{height:167.970000px;}
.he{height:230.970000px;}
.h11{height:252.030000px;}
.h19{height:303.150000px;}
.h17{height:378.030000px;}
.h18{height:398.955000px;}
.h16{height:756.105000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:180.030000px;}
.w3{width:182.370000px;}
.w4{width:182.910000px;}
.w6{width:184.170000px;}
.w8{width:233.355000px;}
.w9{width:488.235000px;}
.w7{width:722.310000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.260000px;}
.xd{left:3.996000px;}
.xe{left:30.960000px;}
.x12{left:34.956000px;}
.x16{left:42.516000px;}
.xa{left:53.856000px;}
.xf{left:57.960000px;}
.x2{left:89.279987px;}
.x13{left:95.075987px;}
.x7{left:116.315987px;}
.x8{left:143.315987px;}
.xc{left:151.920000px;}
.x15{left:216.075000px;}
.x10{left:226.875000px;}
.x14{left:240.735000px;}
.x11{left:248.835000px;}
.x4{left:271.650000px;}
.x9{left:307.155000px;}
.xb{left:323.715000px;}
.x1{left:397.334987px;}
.x5{left:454.575000px;}
.x6{left:634.605000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.368533pt;}
.lsc{letter-spacing:-0.303467pt;}
.ls11{letter-spacing:-0.272533pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.239467pt;}
.ls9{letter-spacing:0.250027pt;}
.ls8{letter-spacing:0.271360pt;}
.ls6{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.911360pt;}
.ls7{letter-spacing:52.751360pt;}
.ws5{word-spacing:-58.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws6{word-spacing:-20.513173pt;}
.ws4{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.ws0{word-spacing:-16.097173pt;}
.ws2{word-spacing:-15.456640pt;}
.ws8{word-spacing:-14.767360pt;}
.wsb{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.672427pt;}
.wsa{word-spacing:-14.494827pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.943360pt;}
._2{width:1.011200pt;}
._3{width:2.215253pt;}
._4{width:52.878080pt;}
._7{width:56.797440pt;}
._5{width:129.678080pt;}
._6{width:751.898027pt;}
._0{width:1482.138027pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:2.880000pt;}
.y5f{bottom:3.040000pt;}
.y7b{bottom:3.080000pt;}
.yc0{bottom:6.880000pt;}
.y7e{bottom:7.040000pt;}
.ybc{bottom:11.200000pt;}
.y4{bottom:17.440000pt;}
.ycc{bottom:21.440000pt;}
.y6b{bottom:21.600000pt;}
.y74{bottom:21.760000pt;}
.y7a{bottom:21.800000pt;}
.y5{bottom:27.520000pt;}
.ybb{bottom:29.760000pt;}
.yc6{bottom:40.160000pt;}
.y6a{bottom:40.320000pt;}
.ya1{bottom:40.360000pt;}
.y79{bottom:40.520000pt;}
.y6{bottom:43.680000pt;}
.yba{bottom:48.480000pt;}
.y3{bottom:54.720000pt;}
.yc5{bottom:58.880000pt;}
.ycb{bottom:58.920000pt;}
.y69{bottom:59.040000pt;}
.y78{bottom:59.080000pt;}
.yb9{bottom:67.200000pt;}
.y29{bottom:71.200000pt;}
.yca{bottom:77.480000pt;}
.y68{bottom:77.600000pt;}
.yad{bottom:77.640000pt;}
.y73{bottom:77.760000pt;}
.y77{bottom:77.800000pt;}
.yb8{bottom:85.760000pt;}
.yc4{bottom:96.186667pt;}
.yc9{bottom:96.200000pt;}
.y67{bottom:96.320000pt;}
.ya0{bottom:96.360000pt;}
.y76{bottom:96.520000pt;}
.y2{bottom:100.672000pt;}
.yb7{bottom:104.520000pt;}
.yc3{bottom:114.906667pt;}
.ya9{bottom:115.040000pt;}
.y72{bottom:115.066667pt;}
.y66{bottom:115.080000pt;}
.yb6{bottom:123.240000pt;}
.y83{bottom:130.592000pt;}
.y27{bottom:130.752000pt;}
.yc2{bottom:133.626667pt;}
.y65{bottom:133.640000pt;}
.ya8{bottom:133.760000pt;}
.y71{bottom:133.786667pt;}
.y9f{bottom:133.800000pt;}
.yb5{bottom:141.800000pt;}
.y4d{bottom:142.106667pt;}
.y82{bottom:144.826667pt;}
.y26{bottom:150.106667pt;}
.ya7{bottom:152.320000pt;}
.y70{bottom:152.346667pt;}
.y64{bottom:152.360000pt;}
.y81{bottom:160.506667pt;}
.yb4{bottom:160.520000pt;}
.y4c{bottom:161.626667pt;}
.y80{bottom:165.786667pt;}
.yd1{bottom:165.946667pt;}
.y25{bottom:169.626667pt;}
.y6f{bottom:171.066667pt;}
.y63{bottom:171.080000pt;}
.yb3{bottom:179.240000pt;}
.y4b{bottom:181.946667pt;}
.yd0{bottom:185.466667pt;}
.y24{bottom:188.986667pt;}
.y62{bottom:189.640000pt;}
.y6e{bottom:189.786667pt;}
.y9e{bottom:189.800000pt;}
.y7f{bottom:191.546667pt;}
.yb2{bottom:197.800000pt;}
.y4a{bottom:201.306667pt;}
.ycf{bottom:204.826667pt;}
.y6d{bottom:208.346667pt;}
.y9d{bottom:208.360000pt;}
.yb1{bottom:216.520000pt;}
.y23{bottom:221.466667pt;}
.yce{bottom:224.186667pt;}
.y9c{bottom:227.080000pt;}
.y49{bottom:234.906667pt;}
.yb0{bottom:235.240000pt;}
.y22{bottom:241.146667pt;}
.ycd{bottom:243.546667pt;}
.yac{bottom:245.640000pt;}
.y7d{bottom:245.786667pt;}
.y9b{bottom:245.800000pt;}
.yaf{bottom:253.800000pt;}
.y48{bottom:254.426667pt;}
.y21{bottom:260.506667pt;}
.ya6{bottom:264.360000pt;}
.y9a{bottom:264.386667pt;}
.yaa{bottom:267.866667pt;}
.y47{bottom:273.786667pt;}
.y7c{bottom:276.666667pt;}
.yc8{bottom:278.746667pt;}
.y20{bottom:279.866667pt;}
.ya5{bottom:283.080000pt;}
.y99{bottom:283.106667pt;}
.y46{bottom:293.146667pt;}
.y84{bottom:294.746667pt;}
.y1f{bottom:299.226667pt;}
.yab{bottom:301.666667pt;}
.ya4{bottom:301.800000pt;}
.y98{bottom:301.826667pt;}
.y1e{bottom:318.586667pt;}
.ya3{bottom:320.360000pt;}
.y97{bottom:320.386667pt;}
.y45{bottom:322.106667pt;}
.y75{bottom:322.266667pt;}
.y96{bottom:339.106667pt;}
.y1d{bottom:351.266667pt;}
.y95{bottom:357.826667pt;}
.y1c{bottom:370.786667pt;}
.y94{bottom:376.386667pt;}
.y44{bottom:377.186667pt;}
.y1b{bottom:390.146667pt;}
.y93{bottom:395.106667pt;}
.y43{bottom:396.706667pt;}
.yc7{bottom:398.946667pt;}
.y1a{bottom:409.666667pt;}
.y92{bottom:413.826667pt;}
.y42{bottom:416.066667pt;}
.y19{bottom:429.026667pt;}
.y91{bottom:432.386667pt;}
.y41{bottom:435.586667pt;}
.y6c{bottom:442.626667pt;}
.y18{bottom:448.386667pt;}
.y90{bottom:451.106667pt;}
.y40{bottom:454.946667pt;}
.yc1{bottom:463.266667pt;}
.y17{bottom:467.746667pt;}
.y8f{bottom:469.826667pt;}
.y3f{bottom:474.306667pt;}
.y8e{bottom:488.386667pt;}
.y3e{bottom:493.666667pt;}
.y16{bottom:500.386667pt;}
.y8d{bottom:507.146667pt;}
.y15{bottom:519.906667pt;}
.y8c{bottom:525.866667pt;}
.y3d{bottom:526.306667pt;}
.y14{bottom:539.266667pt;}
.y8b{bottom:544.426667pt;}
.y3c{bottom:545.826667pt;}
.y13{bottom:558.653333pt;}
.y8a{bottom:563.146667pt;}
.y3b{bottom:566.173333pt;}
.y12{bottom:578.173333pt;}
.y89{bottom:581.866667pt;}
.y3a{bottom:585.693333pt;}
.y11{bottom:597.533333pt;}
.y88{bottom:600.426667pt;}
.y39{bottom:606.013333pt;}
.y87{bottom:619.146667pt;}
.ybf{bottom:620.893333pt;}
.y38{bottom:625.373333pt;}
.y10{bottom:626.493333pt;}
.y5c{bottom:627.613333pt;}
.ya2{bottom:630.813333pt;}
.y86{bottom:637.866667pt;}
.y37{bottom:645.853333pt;}
.ybd{bottom:651.773333pt;}
.y85{bottom:656.426667pt;}
.y5b{bottom:660.253333pt;}
.y36{bottom:665.213333pt;}
.y61{bottom:674.973333pt;}
.y5a{bottom:679.773333pt;}
.yf{bottom:680.413333pt;}
.yae{bottom:697.373333pt;}
.y35{bottom:698.813333pt;}
.y59{bottom:699.293333pt;}
.ye{bottom:709.693333pt;}
.y34{bottom:718.333333pt;}
.y58{bottom:718.653333pt;}
.y33{bottom:737.693333pt;}
.y57{bottom:738.013333pt;}
.yd{bottom:738.813333pt;}
.y32{bottom:757.053333pt;}
.yc{bottom:768.093333pt;}
.y56{bottom:770.653333pt;}
.y31{bottom:776.413333pt;}
.y55{bottom:790.213333pt;}
.y30{bottom:795.973333pt;}
.yb{bottom:797.253333pt;}
.y54{bottom:810.533333pt;}
.y2f{bottom:824.933333pt;}
.ya{bottom:829.093333pt;}
.y53{bottom:831.013333pt;}
.y9{bottom:859.813333pt;}
.y52{bottom:864.453333pt;}
.y2e{bottom:879.813333pt;}
.y60{bottom:888.613333pt;}
.y51{bottom:897.253333pt;}
.y2d{bottom:899.333333pt;}
.y8{bottom:914.053333pt;}
.y5e{bottom:915.493333pt;}
.y50{bottom:916.773333pt;}
.y2c{bottom:918.853333pt;}
.y4f{bottom:937.253333pt;}
.y2b{bottom:938.213333pt;}
.y7{bottom:947.493333pt;}
.y5d{bottom:953.893333pt;}
.y4e{bottom:956.613333pt;}
.y2a{bottom:957.573333pt;}
.y1{bottom:1058.080000pt;}
.y28{bottom:1082.240000pt;}
.hd{height:18.560000pt;}
.hb{height:18.720000pt;}
.h14{height:22.720000pt;}
.h4{height:27.520000pt;}
.h15{height:33.295625pt;}
.h9{height:36.093750pt;}
.h13{height:37.440000pt;}
.h3{height:38.462187pt;}
.h1a{height:39.943750pt;}
.ha{height:43.054688pt;}
.hf{height:43.441250pt;}
.hc{height:44.275000pt;}
.h7{height:47.647188pt;}
.h2{height:52.813750pt;}
.h10{height:54.415625pt;}
.h1c{height:56.000000pt;}
.h8{height:56.306250pt;}
.h5{height:57.406250pt;}
.h6{height:76.037500pt;}
.h12{height:112.032000pt;}
.h1b{height:149.306667pt;}
.he{height:205.306667pt;}
.h11{height:224.026667pt;}
.h19{height:269.466667pt;}
.h17{height:336.026667pt;}
.h18{height:354.626667pt;}
.h16{height:672.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:160.026667pt;}
.w3{width:162.106667pt;}
.w4{width:162.586667pt;}
.w6{width:163.706667pt;}
.w8{width:207.426667pt;}
.w9{width:433.986667pt;}
.w7{width:642.053333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.120000pt;}
.xd{left:3.552000pt;}
.xe{left:27.520000pt;}
.x12{left:31.072000pt;}
.x16{left:37.792000pt;}
.xa{left:47.872000pt;}
.xf{left:51.520000pt;}
.x2{left:79.359988pt;}
.x13{left:84.511988pt;}
.x7{left:103.391988pt;}
.x8{left:127.391988pt;}
.xc{left:135.040000pt;}
.x15{left:192.066667pt;}
.x10{left:201.666667pt;}
.x14{left:213.986667pt;}
.x11{left:221.186667pt;}
.x4{left:241.466667pt;}
.x9{left:273.026667pt;}
.xb{left:287.746667pt;}
.x1{left:353.186655pt;}
.x5{left:404.066667pt;}
.x6{left:564.093333pt;}
}




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