
    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_5d16493445ec496046028fe0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_94ef8ab6987ea3b290963673.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_961e91b22143a51f6bd172ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1d68a6f111caa4e3099050df.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_5bf827d5ca2748be2a5180f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_b9981a27f0c6ade64b397bb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_c05511364206a09c0dfa4751.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_ad218810bc09d51a05c0797f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.869629;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_8d508184c126f7cfeeb0ae1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_428cc79602e59abc06237176.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bc6270613d23c1292c0257de.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.869629;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls14{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.lse{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.181440px;}
.ls11{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.lsb{letter-spacing:198.144000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws4{word-spacing:-63.360000px;}
.wsc{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.046800px;}
.wse{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.166000px;}
.wsa{word-spacing:-12.060000px;}
.wsb{word-spacing:-0.063360px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.008000px;}
._0{width:1.140000px;}
._5{width:2.359200px;}
._2{width:55.092000px;}
._4{width:125.100000px;}
._3{width:846.300000px;}
.fc8{color:rgb(112,117,122);}
.fc7{color:rgb(68,114,196);}
.fc6{color:rgb(47,84,150);}
.fc5{color:transparent;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(77,81,86);}
.fc4{color:rgb(32,33,36);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y44{bottom:20.340000px;}
.y4b{bottom:20.520000px;}
.y85{bottom:20.550000px;}
.y43{bottom:37.620000px;}
.y84{bottom:37.650000px;}
.y8a{bottom:37.794000px;}
.y4a{bottom:37.800000px;}
.y42{bottom:54.900000px;}
.y83{bottom:54.930000px;}
.y7f{bottom:54.945000px;}
.y49{bottom:55.080000px;}
.y75{bottom:55.110000px;}
.y2{bottom:57.060000px;}
.y41{bottom:72.180000px;}
.y82{bottom:72.210000px;}
.y65{bottom:72.225000px;}
.y6d{bottom:72.360000px;}
.y74{bottom:72.390000px;}
.y5d{bottom:72.405000px;}
.y1{bottom:77.040000px;}
.y40{bottom:89.460000px;}
.y73{bottom:89.490000px;}
.y64{bottom:89.505000px;}
.y6c{bottom:89.640000px;}
.y5c{bottom:89.685000px;}
.y3f{bottom:106.740000px;}
.y53{bottom:106.770000px;}
.y5b{bottom:106.785000px;}
.y89{bottom:115.956000px;}
.y3e{bottom:123.840000px;}
.y48{bottom:124.020000px;}
.y52{bottom:124.050000px;}
.y5a{bottom:124.065000px;}
.y3d{bottom:141.120000px;}
.y71{bottom:141.300000px;}
.y51{bottom:141.330000px;}
.y47{bottom:141.345000px;}
.y1c{bottom:142.056000px;}
.y35{bottom:144.576000px;}
.y3c{bottom:158.400000px;}
.y50{bottom:158.610000px;}
.y59{bottom:158.625000px;}
.y88{bottom:168.510000px;}
.y3b{bottom:175.680000px;}
.y4f{bottom:175.710000px;}
.y70{bottom:175.725000px;}
.y58{bottom:175.905000px;}
.y1b{bottom:183.450000px;}
.y34{bottom:185.970000px;}
.y3a{bottom:192.960000px;}
.y4e{bottom:192.990000px;}
.y57{bottom:193.005000px;}
.y39{bottom:210.240000px;}
.y4d{bottom:210.270000px;}
.y56{bottom:210.285000px;}
.y1a{bottom:224.850000px;}
.y33{bottom:227.370000px;}
.y55{bottom:227.565000px;}
.y5f{bottom:237.450000px;}
.y5e{bottom:258.150000px;}
.y19{bottom:266.250000px;}
.y37{bottom:268.590000px;}
.y32{bottom:268.770000px;}
.y7d{bottom:270.570000px;}
.y54{bottom:275.610000px;}
.y7c{bottom:291.270000px;}
.y17{bottom:307.650000px;}
.y36{bottom:309.990000px;}
.y31{bottom:310.170000px;}
.y7b{bottom:311.970000px;}
.y7a{bottom:332.670000px;}
.y16{bottom:349.095000px;}
.y30{bottom:351.615000px;}
.y79{bottom:353.415000px;}
.y87{bottom:358.995000px;}
.y78{bottom:374.115000px;}
.y15{bottom:390.495000px;}
.y2f{bottom:393.015000px;}
.y77{bottom:394.815000px;}
.y76{bottom:412.275000px;}
.y14{bottom:431.895000px;}
.y2e{bottom:434.415000px;}
.y13{bottom:473.295000px;}
.y2d{bottom:475.815000px;}
.y86{bottom:480.495000px;}
.y12{bottom:514.695000px;}
.y2c{bottom:517.215000px;}
.y4c{bottom:517.935000px;}
.y11{bottom:556.095000px;}
.y2b{bottom:558.615000px;}
.y72{bottom:568.155000px;}
.y10{bottom:597.495000px;}
.y2a{bottom:600.015000px;}
.y81{bottom:601.995000px;}
.y6a{bottom:626.685000px;}
.yf{bottom:638.925000px;}
.y29{bottom:641.445000px;}
.y69{bottom:647.385000px;}
.y68{bottom:668.085000px;}
.ye{bottom:680.325000px;}
.y28{bottom:682.845000px;}
.y67{bottom:688.785000px;}
.y66{bottom:706.245000px;}
.y6f{bottom:706.965000px;}
.yd{bottom:721.725000px;}
.y80{bottom:723.525000px;}
.y27{bottom:724.245000px;}
.y46{bottom:742.965000px;}
.yc{bottom:763.125000px;}
.y26{bottom:765.645000px;}
.yb{bottom:804.525000px;}
.y25{bottom:807.045000px;}
.y63{bottom:810.465000px;}
.y7e{bottom:827.745000px;}
.ya{bottom:845.925000px;}
.y24{bottom:848.445000px;}
.y9{bottom:887.370000px;}
.y23{bottom:889.890000px;}
.y38{bottom:899.070000px;}
.y6e{bottom:914.730000px;}
.y8e{bottom:925.530000px;}
.y8{bottom:928.770000px;}
.y22{bottom:931.290000px;}
.y62{bottom:932.010000px;}
.y8d{bottom:946.230000px;}
.y8c{bottom:963.870000px;}
.y7{bottom:970.170000px;}
.y21{bottom:972.690000px;}
.y6b{bottom:1001.670000px;}
.y18{bottom:1011.570000px;}
.y20{bottom:1014.090000px;}
.y6{bottom:1018.410000px;}
.y5{bottom:1052.970000px;}
.y61{bottom:1053.510000px;}
.y1f{bottom:1055.490000px;}
.y8b{bottom:1085.370000px;}
.y4{bottom:1094.370000px;}
.y1e{bottom:1096.890000px;}
.y60{bottom:1106.070000px;}
.y3{bottom:1137.930000px;}
.y1d{bottom:1138.290000px;}
.h11{height:17.100000px;}
.h6{height:39.760312px;}
.h2{height:43.215117px;}
.hd{height:49.255313px;}
.h9{height:50.800781px;}
.h12{height:51.660000px;}
.h3{height:52.066406px;}
.ha{height:52.171875px;}
.hb{height:52.417969px;}
.h7{height:59.343750px;}
.h5{height:62.244492px;}
.h8{height:67.120312px;}
.h1c{height:68.976000px;}
.h4{height:73.722656px;}
.h16{height:86.220000px;}
.h1a{height:86.256000px;}
.h15{height:103.500000px;}
.h1d{height:120.600000px;}
.h13{height:120.780000px;}
.h14{height:120.816000px;}
.h18{height:138.096000px;}
.h19{height:155.160000px;}
.he{height:155.190000px;}
.h1b{height:189.750000px;}
.h17{height:207.030000px;}
.hc{height:224.100000px;}
.hf{height:224.310000px;}
.h10{height:241.590000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:117.036000px;}
.w8{width:129.996000px;}
.w5{width:133.776000px;}
.wb{width:145.296000px;}
.wc{width:173.730000px;}
.wd{width:207.570000px;}
.we{width:228.495000px;}
.w6{width:262.695000px;}
.wa{width:274.575000px;}
.w9{width:326.235000px;}
.w7{width:334.335000px;}
.w4{width:465.045000px;}
.w1{width:892.500000px;}
.w2{width:892.619987px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.x8{left:8.136000px;}
.x2{left:80.999987px;}
.x3{left:108.755987px;}
.x7{left:113.075987px;}
.x4{left:123.515987px;}
.x6{left:135.035987px;}
.x9{left:198.030000px;}
.xc{left:210.990000px;}
.xa{left:214.770000px;}
.xe{left:226.290000px;}
.xf{left:400.035000px;}
.x5{left:438.944987px;}
.x1{left:442.544987px;}
.xb{left:477.465000px;}
.xd{left:537.225000px;}
.x10{left:607.605000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.161280pt;}
.ls11{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsb{letter-spacing:176.128000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws4{word-spacing:-56.320000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws10{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.592000pt;}
.wsa{word-spacing:-10.720000pt;}
.wsb{word-spacing:-0.056320pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.013333pt;}
._5{width:2.097067pt;}
._2{width:48.970667pt;}
._4{width:111.200000pt;}
._3{width:752.266667pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y44{bottom:18.080000pt;}
.y4b{bottom:18.240000pt;}
.y85{bottom:18.266667pt;}
.y43{bottom:33.440000pt;}
.y84{bottom:33.466667pt;}
.y8a{bottom:33.594667pt;}
.y4a{bottom:33.600000pt;}
.y42{bottom:48.800000pt;}
.y83{bottom:48.826667pt;}
.y7f{bottom:48.840000pt;}
.y49{bottom:48.960000pt;}
.y75{bottom:48.986667pt;}
.y2{bottom:50.720000pt;}
.y41{bottom:64.160000pt;}
.y82{bottom:64.186667pt;}
.y65{bottom:64.200000pt;}
.y6d{bottom:64.320000pt;}
.y74{bottom:64.346667pt;}
.y5d{bottom:64.360000pt;}
.y1{bottom:68.480000pt;}
.y40{bottom:79.520000pt;}
.y73{bottom:79.546667pt;}
.y64{bottom:79.560000pt;}
.y6c{bottom:79.680000pt;}
.y5c{bottom:79.720000pt;}
.y3f{bottom:94.880000pt;}
.y53{bottom:94.906667pt;}
.y5b{bottom:94.920000pt;}
.y89{bottom:103.072000pt;}
.y3e{bottom:110.080000pt;}
.y48{bottom:110.240000pt;}
.y52{bottom:110.266667pt;}
.y5a{bottom:110.280000pt;}
.y3d{bottom:125.440000pt;}
.y71{bottom:125.600000pt;}
.y51{bottom:125.626667pt;}
.y47{bottom:125.640000pt;}
.y1c{bottom:126.272000pt;}
.y35{bottom:128.512000pt;}
.y3c{bottom:140.800000pt;}
.y50{bottom:140.986667pt;}
.y59{bottom:141.000000pt;}
.y88{bottom:149.786667pt;}
.y3b{bottom:156.160000pt;}
.y4f{bottom:156.186667pt;}
.y70{bottom:156.200000pt;}
.y58{bottom:156.360000pt;}
.y1b{bottom:163.066667pt;}
.y34{bottom:165.306667pt;}
.y3a{bottom:171.520000pt;}
.y4e{bottom:171.546667pt;}
.y57{bottom:171.560000pt;}
.y39{bottom:186.880000pt;}
.y4d{bottom:186.906667pt;}
.y56{bottom:186.920000pt;}
.y1a{bottom:199.866667pt;}
.y33{bottom:202.106667pt;}
.y55{bottom:202.280000pt;}
.y5f{bottom:211.066667pt;}
.y5e{bottom:229.466667pt;}
.y19{bottom:236.666667pt;}
.y37{bottom:238.746667pt;}
.y32{bottom:238.906667pt;}
.y7d{bottom:240.506667pt;}
.y54{bottom:244.986667pt;}
.y7c{bottom:258.906667pt;}
.y17{bottom:273.466667pt;}
.y36{bottom:275.546667pt;}
.y31{bottom:275.706667pt;}
.y7b{bottom:277.306667pt;}
.y7a{bottom:295.706667pt;}
.y16{bottom:310.306667pt;}
.y30{bottom:312.546667pt;}
.y79{bottom:314.146667pt;}
.y87{bottom:319.106667pt;}
.y78{bottom:332.546667pt;}
.y15{bottom:347.106667pt;}
.y2f{bottom:349.346667pt;}
.y77{bottom:350.946667pt;}
.y76{bottom:366.466667pt;}
.y14{bottom:383.906667pt;}
.y2e{bottom:386.146667pt;}
.y13{bottom:420.706667pt;}
.y2d{bottom:422.946667pt;}
.y86{bottom:427.106667pt;}
.y12{bottom:457.506667pt;}
.y2c{bottom:459.746667pt;}
.y4c{bottom:460.386667pt;}
.y11{bottom:494.306667pt;}
.y2b{bottom:496.546667pt;}
.y72{bottom:505.026667pt;}
.y10{bottom:531.106667pt;}
.y2a{bottom:533.346667pt;}
.y81{bottom:535.106667pt;}
.y6a{bottom:557.053333pt;}
.yf{bottom:567.933333pt;}
.y29{bottom:570.173333pt;}
.y69{bottom:575.453333pt;}
.y68{bottom:593.853333pt;}
.ye{bottom:604.733333pt;}
.y28{bottom:606.973333pt;}
.y67{bottom:612.253333pt;}
.y66{bottom:627.773333pt;}
.y6f{bottom:628.413333pt;}
.yd{bottom:641.533333pt;}
.y80{bottom:643.133333pt;}
.y27{bottom:643.773333pt;}
.y46{bottom:660.413333pt;}
.yc{bottom:678.333333pt;}
.y26{bottom:680.573333pt;}
.yb{bottom:715.133333pt;}
.y25{bottom:717.373333pt;}
.y63{bottom:720.413333pt;}
.y7e{bottom:735.773333pt;}
.ya{bottom:751.933333pt;}
.y24{bottom:754.173333pt;}
.y9{bottom:788.773333pt;}
.y23{bottom:791.013333pt;}
.y38{bottom:799.173333pt;}
.y6e{bottom:813.093333pt;}
.y8e{bottom:822.693333pt;}
.y8{bottom:825.573333pt;}
.y22{bottom:827.813333pt;}
.y62{bottom:828.453333pt;}
.y8d{bottom:841.093333pt;}
.y8c{bottom:856.773333pt;}
.y7{bottom:862.373333pt;}
.y21{bottom:864.613333pt;}
.y6b{bottom:890.373333pt;}
.y18{bottom:899.173333pt;}
.y20{bottom:901.413333pt;}
.y6{bottom:905.253333pt;}
.y5{bottom:935.973333pt;}
.y61{bottom:936.453333pt;}
.y1f{bottom:938.213333pt;}
.y8b{bottom:964.773333pt;}
.y4{bottom:972.773333pt;}
.y1e{bottom:975.013333pt;}
.y60{bottom:983.173333pt;}
.y3{bottom:1011.493333pt;}
.y1d{bottom:1011.813333pt;}
.h11{height:15.200000pt;}
.h6{height:35.342500pt;}
.h2{height:38.413438pt;}
.hd{height:43.782500pt;}
.h9{height:45.156250pt;}
.h12{height:45.920000pt;}
.h3{height:46.281250pt;}
.ha{height:46.375000pt;}
.hb{height:46.593750pt;}
.h7{height:52.750000pt;}
.h5{height:55.328437pt;}
.h8{height:59.662500pt;}
.h1c{height:61.312000pt;}
.h4{height:65.531250pt;}
.h16{height:76.640000pt;}
.h1a{height:76.672000pt;}
.h15{height:92.000000pt;}
.h1d{height:107.200000pt;}
.h13{height:107.360000pt;}
.h14{height:107.392000pt;}
.h18{height:122.752000pt;}
.h19{height:137.920000pt;}
.he{height:137.946667pt;}
.h1b{height:168.666667pt;}
.h17{height:184.026667pt;}
.hc{height:199.200000pt;}
.hf{height:199.386667pt;}
.h10{height:214.746667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:104.032000pt;}
.w8{width:115.552000pt;}
.w5{width:118.912000pt;}
.wb{width:129.152000pt;}
.wc{width:154.426667pt;}
.wd{width:184.506667pt;}
.we{width:203.106667pt;}
.w6{width:233.506667pt;}
.wa{width:244.066667pt;}
.w9{width:289.986667pt;}
.w7{width:297.186667pt;}
.w4{width:413.373333pt;}
.w1{width:793.333333pt;}
.w2{width:793.439988pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.x8{left:7.232000pt;}
.x2{left:71.999988pt;}
.x3{left:96.671988pt;}
.x7{left:100.511988pt;}
.x4{left:109.791988pt;}
.x6{left:120.031988pt;}
.x9{left:176.026667pt;}
.xc{left:187.546667pt;}
.xa{left:190.906667pt;}
.xe{left:201.146667pt;}
.xf{left:355.586667pt;}
.x5{left:390.173322pt;}
.x1{left:393.373322pt;}
.xb{left:424.413333pt;}
.xd{left:477.533333pt;}
.x10{left:540.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; }
  