
    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_2fe0a84ace9106291be75e27.woff')format("woff");}.ff1{font-family:ff1;line-height:0.860840;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_efc14a5bd9467b5b19c1cffe.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f24d0ee65224094fa70a930b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.913086;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_86bd6ce8b3e2fd5de44dc44e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.894531;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_de22a5c10e55142761b2b52d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.160000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.019500px;}
.ls0{letter-spacing:16.470000px;}
.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:-60.183000px;}
.ws1a{word-spacing:-44.794500px;}
.ws18{word-spacing:-44.775000px;}
.ws16{word-spacing:-40.169700px;}
.ws11{word-spacing:-31.370400px;}
.wsf{word-spacing:-31.255200px;}
.ws9{word-spacing:-31.151400px;}
.wsb{word-spacing:-31.145100px;}
.ws2{word-spacing:-30.665700px;}
.ws1{word-spacing:-30.453300px;}
.ws6{word-spacing:-29.250000px;}
.ws1d{word-spacing:-29.004600px;}
.ws32{word-spacing:-29.001900px;}
.ws12{word-spacing:-29.000400px;}
.ws8{word-spacing:-28.891200px;}
.ws10{word-spacing:-28.884900px;}
.wsd{word-spacing:-28.650600px;}
.wse{word-spacing:-28.641600px;}
.ws2c{word-spacing:-28.294200px;}
.ws21{word-spacing:-28.288800px;}
.ws37{word-spacing:-28.287900px;}
.ws20{word-spacing:-28.282800px;}
.ws26{word-spacing:-28.282200px;}
.ws2a{word-spacing:-28.281900px;}
.ws1e{word-spacing:-28.275600px;}
.ws2e{word-spacing:-28.274100px;}
.ws3{word-spacing:-28.273800px;}
.ws23{word-spacing:-28.272900px;}
.ws1b{word-spacing:-28.271100px;}
.ws2f{word-spacing:-28.269300px;}
.ws39{word-spacing:-28.267500px;}
.ws13{word-spacing:-28.250100px;}
.ws7{word-spacing:-28.195200px;}
.ws38{word-spacing:-28.191900px;}
.ws1c{word-spacing:-28.189200px;}
.wsa{word-spacing:-28.185600px;}
.ws1f{word-spacing:-28.183800px;}
.ws28{word-spacing:-28.181100px;}
.ws29{word-spacing:-28.178700px;}
.ws22{word-spacing:-27.934800px;}
.ws31{word-spacing:-27.932400px;}
.ws33{word-spacing:-27.928800px;}
.ws30{word-spacing:-27.911700px;}
.ws34{word-spacing:-27.821400px;}
.ws5{word-spacing:-27.820500px;}
.ws35{word-spacing:-27.818400px;}
.ws27{word-spacing:-27.810600px;}
.ws2d{word-spacing:-27.754800px;}
.ws24{word-spacing:-27.748800px;}
.ws19{word-spacing:-27.567900px;}
.ws14{word-spacing:-27.562800px;}
.wsc{word-spacing:-27.561900px;}
.ws17{word-spacing:-27.559200px;}
.ws36{word-spacing:-27.556500px;}
.ws2b{word-spacing:-27.555900px;}
.ws15{word-spacing:-27.469200px;}
.ws4{word-spacing:-18.453000px;}
.ws25{word-spacing:0.000000px;}
._9{margin-left:-10.080000px;}
._3{margin-left:-4.482000px;}
._5{margin-left:-3.130800px;}
._0{margin-left:-1.874700px;}
._1{width:1.066500px;}
._a{width:2.278800px;}
._8{width:13.353600px;}
._7{width:15.730800px;}
._4{width:17.262600px;}
._6{width:18.398400px;}
._2{width:24.996600px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs2{font-size:59.700000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:144.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:5.250000px;}
.y63{bottom:5.265000px;}
.y7b{bottom:5.280000px;}
.y1a{bottom:5.296500px;}
.y27{bottom:5.311500px;}
.y2f{bottom:5.325000px;}
.y4a{bottom:5.340000px;}
.y6d{bottom:5.355000px;}
.y5c{bottom:5.370000px;}
.y67{bottom:5.386500px;}
.y82{bottom:5.400000px;}
.y65{bottom:5.415000px;}
.y37{bottom:5.475000px;}
.y4f{bottom:5.490000px;}
.y39{bottom:5.521500px;}
.y61{bottom:6.450000px;}
.y22{bottom:6.465000px;}
.y2d{bottom:6.480000px;}
.y79{bottom:6.540000px;}
.y5a{bottom:6.555000px;}
.ya9{bottom:6.570000px;}
.y8c{bottom:6.571500px;}
.ya5{bottom:6.586500px;}
.y46{bottom:6.600000px;}
.y45{bottom:7.500000px;}
.y60{bottom:7.530000px;}
.y21{bottom:7.546500px;}
.y2c{bottom:7.561500px;}
.y78{bottom:7.621500px;}
.y59{bottom:7.636500px;}
.y8b{bottom:7.650000px;}
.y6b{bottom:7.665000px;}
.y43{bottom:8.565000px;}
.y57{bottom:8.700000px;}
.y9e{bottom:8.761500px;}
.yac{bottom:8.911500px;}
.y80{bottom:9.465000px;}
.y48{bottom:11.715000px;}
.y68{bottom:11.730000px;}
.y75{bottom:11.746500px;}
.y7e{bottom:11.775000px;}
.y50{bottom:13.950000px;}
.y97{bottom:13.996500px;}
.y71{bottom:14.115000px;}
.y3a{bottom:14.161500px;}
.yad{bottom:17.550000px;}
.ya7{bottom:22.500000px;}
.y36{bottom:22.575000px;}
.y4e{bottom:22.590000px;}
.y38{bottom:22.621500px;}
.y96{bottom:22.636500px;}
.y8e{bottom:22.665000px;}
.ya4{bottom:24.765000px;}
.y6a{bottom:24.946500px;}
.yab{bottom:26.011500px;}
.y7f{bottom:26.565000px;}
.y1e{bottom:28.965000px;}
.y9a{bottom:31.290000px;}
.y9c{bottom:39.855000px;}
.y1c{bottom:41.386500px;}
.y99{bottom:44.971500px;}
.y9d{bottom:59.175000px;}
.y98{bottom:59.325000px;}
.y23{bottom:74.475000px;}
.y73{bottom:77.040000px;}
.y9b{bottom:88.200000px;}
.y41{bottom:89.040000px;}
.ya1{bottom:96.825000px;}
.y29{bottom:105.090000px;}
.y3d{bottom:105.645000px;}
.y6f{bottom:113.146500px;}
.ya0{bottom:113.925000px;}
.y28{bottom:114.225000px;}
.y35{bottom:114.300000px;}
.y88{bottom:116.880000px;}
.y3c{bottom:119.325000px;}
.y55{bottom:120.811500px;}
.y25{bottom:130.440000px;}
.y85{bottom:133.590000px;}
.y24{bottom:144.300000px;}
.y83{bottom:145.125000px;}
.y95{bottom:145.200000px;}
.y52{bottom:146.700000px;}
.y84{bottom:147.450000px;}
.y34{bottom:154.050000px;}
.y33{bottom:176.550000px;}
.y87{bottom:184.875000px;}
.y94{bottom:184.950000px;}
.y32{bottom:199.050000px;}
.y93{bottom:207.450000px;}
.y31{bottom:221.550000px;}
.y92{bottom:229.950000px;}
.y30{bottom:244.050000px;}
.y91{bottom:252.450000px;}
.y2e{bottom:266.550000px;}
.y90{bottom:274.950000px;}
.y2b{bottom:288.975000px;}
.y8f{bottom:297.450000px;}
.y2a{bottom:313.725000px;}
.y8d{bottom:319.950000px;}
.y26{bottom:336.225000px;}
.y1b{bottom:358.650000px;}
.y8a{bottom:359.625000px;}
.y20{bottom:383.400000px;}
.y89{bottom:384.300000px;}
.y1f{bottom:405.900000px;}
.y86{bottom:413.250000px;}
.y1d{bottom:428.400000px;}
.y6e{bottom:435.750000px;}
.y19{bottom:450.900000px;}
.y81{bottom:460.875000px;}
.y7d{bottom:483.300000px;}
.y72{bottom:483.375000px;}
.y18{bottom:491.655000px;}
.y7c{bottom:511.425000px;}
.y7a{bottom:533.175000px;}
.y77{bottom:555.675000px;}
.y76{bottom:580.425000px;}
.y17{bottom:590.475000px;}
.y74{bottom:602.850000px;}
.y16{bottom:607.755000px;}
.y15{bottom:625.036500px;}
.y70{bottom:631.800000px;}
.y14{bottom:642.315000px;}
.y13{bottom:659.596500px;}
.y51{bottom:671.475000px;}
.y69{bottom:671.550000px;}
.y12{bottom:676.875000px;}
.y6c{bottom:693.300000px;}
.y11{bottom:693.975000px;}
.y10{bottom:711.255000px;}
.y54{bottom:715.725000px;}
.yf{bottom:728.536500px;}
.y66{bottom:743.850000px;}
.ye{bottom:745.815000px;}
.yd{bottom:763.096500px;}
.y64{bottom:765.600000px;}
.yc{bottom:780.375000px;}
.y62{bottom:787.350000px;}
.yb{bottom:797.475000px;}
.y5f{bottom:809.025000px;}
.ya{bottom:814.755000px;}
.y9{bottom:832.036500px;}
.y5e{bottom:833.025000px;}
.y5d{bottom:854.775000px;}
.y8{bottom:867.315000px;}
.y5b{bottom:876.525000px;}
.y7{bottom:889.636500px;}
.y58{bottom:898.200000px;}
.y6{bottom:919.875000px;}
.y56{bottom:922.875000px;}
.y5{bottom:942.015000px;}
.y53{bottom:951.825000px;}
.y3b{bottom:974.250000px;}
.y4d{bottom:974.325000px;}
.y4{bottom:976.755000px;}
.y40{bottom:1014.075000px;}
.y3{bottom:1021.395000px;}
.yaa{bottom:1034.625000px;}
.y4c{bottom:1036.575000px;}
.y2{bottom:1054.336500px;}
.y4b{bottom:1059.075000px;}
.y9f{bottom:1077.750000px;}
.ya8{bottom:1077.825000px;}
.y49{bottom:1081.575000px;}
.ya6{bottom:1102.575000px;}
.y47{bottom:1104.000000px;}
.y1{bottom:1121.475000px;}
.y44{bottom:1132.875000px;}
.ya3{bottom:1142.250000px;}
.y42{bottom:1157.550000px;}
.ya2{bottom:1184.175000px;}
.y3e{bottom:1186.425000px;}
.h19{height:21.675000px;}
.hb{height:22.425000px;}
.h1a{height:23.925000px;}
.hd{height:24.675000px;}
.h8{height:25.050000px;}
.h1b{height:28.050000px;}
.h5{height:28.412109px;}
.h16{height:28.800000px;}
.h15{height:28.875000px;}
.h24{height:28.950000px;}
.h11{height:39.675000px;}
.h12{height:39.750000px;}
.h26{height:41.925000px;}
.h9{height:42.734473px;}
.h27{height:43.125000px;}
.h6{height:43.492383px;}
.h1c{height:44.175000px;}
.h1f{height:47.550000px;}
.he{height:48.039844px;}
.h4{height:48.572109px;}
.h23{height:56.925000px;}
.hc{height:69.675000px;}
.h3{height:73.828125px;}
.h22{height:85.800000px;}
.ha{height:92.175000px;}
.h7{height:98.437500px;}
.h25{height:131.100000px;}
.h2{height:147.656250px;}
.h1e{height:148.350000px;}
.h14{height:172.350000px;}
.h10{height:221.925000px;}
.h21{height:228.300000px;}
.h13{height:234.600000px;}
.h1d{height:235.725000px;}
.h18{height:236.025000px;}
.hf{height:284.175000px;}
.h20{height:290.550000px;}
.h17{height:302.775000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:69.825000px;}
.w6{width:72.075000px;}
.w2{width:111.450000px;}
.w5{width:122.700000px;}
.w7{width:407.325000px;}
.w4{width:601.950000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.330000px;}
.x6{left:6.975000px;}
.x2{left:47.250000px;}
.x1{left:54.000000px;}
.x4{left:158.625000px;}
.x5{left:228.375000px;}
.x7{left:351.000000px;}
.x8{left:423.000000px;}
@media print{
.v2{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.920000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017333pt;}
.ls0{letter-spacing:14.640000pt;}
.ws0{word-spacing:-53.496000pt;}
.ws1a{word-spacing:-39.817333pt;}
.ws18{word-spacing:-39.800000pt;}
.ws16{word-spacing:-35.706400pt;}
.ws11{word-spacing:-27.884800pt;}
.wsf{word-spacing:-27.782400pt;}
.ws9{word-spacing:-27.690133pt;}
.wsb{word-spacing:-27.684533pt;}
.ws2{word-spacing:-27.258400pt;}
.ws1{word-spacing:-27.069600pt;}
.ws6{word-spacing:-26.000000pt;}
.ws1d{word-spacing:-25.781867pt;}
.ws32{word-spacing:-25.779467pt;}
.ws12{word-spacing:-25.778133pt;}
.ws8{word-spacing:-25.681067pt;}
.ws10{word-spacing:-25.675467pt;}
.wsd{word-spacing:-25.467200pt;}
.wse{word-spacing:-25.459200pt;}
.ws2c{word-spacing:-25.150400pt;}
.ws21{word-spacing:-25.145600pt;}
.ws37{word-spacing:-25.144800pt;}
.ws20{word-spacing:-25.140267pt;}
.ws26{word-spacing:-25.139733pt;}
.ws2a{word-spacing:-25.139467pt;}
.ws1e{word-spacing:-25.133867pt;}
.ws2e{word-spacing:-25.132533pt;}
.ws3{word-spacing:-25.132267pt;}
.ws23{word-spacing:-25.131467pt;}
.ws1b{word-spacing:-25.129867pt;}
.ws2f{word-spacing:-25.128267pt;}
.ws39{word-spacing:-25.126667pt;}
.ws13{word-spacing:-25.111200pt;}
.ws7{word-spacing:-25.062400pt;}
.ws38{word-spacing:-25.059467pt;}
.ws1c{word-spacing:-25.057067pt;}
.wsa{word-spacing:-25.053867pt;}
.ws1f{word-spacing:-25.052267pt;}
.ws28{word-spacing:-25.049867pt;}
.ws29{word-spacing:-25.047733pt;}
.ws22{word-spacing:-24.830933pt;}
.ws31{word-spacing:-24.828800pt;}
.ws33{word-spacing:-24.825600pt;}
.ws30{word-spacing:-24.810400pt;}
.ws34{word-spacing:-24.730133pt;}
.ws5{word-spacing:-24.729333pt;}
.ws35{word-spacing:-24.727467pt;}
.ws27{word-spacing:-24.720533pt;}
.ws2d{word-spacing:-24.670933pt;}
.ws24{word-spacing:-24.665600pt;}
.ws19{word-spacing:-24.504800pt;}
.ws14{word-spacing:-24.500267pt;}
.wsc{word-spacing:-24.499467pt;}
.ws17{word-spacing:-24.497067pt;}
.ws36{word-spacing:-24.494667pt;}
.ws2b{word-spacing:-24.494133pt;}
.ws15{word-spacing:-24.417067pt;}
.ws4{word-spacing:-16.402667pt;}
.ws25{word-spacing:0.000000pt;}
._9{margin-left:-8.960000pt;}
._3{margin-left:-3.984000pt;}
._5{margin-left:-2.782933pt;}
._0{margin-left:-1.666400pt;}
._1{width:0.948000pt;}
._a{width:2.025600pt;}
._8{width:11.869867pt;}
._7{width:13.982933pt;}
._4{width:15.344533pt;}
._6{width:16.354133pt;}
._2{width:22.219200pt;}
.fs3{font-size:34.666667pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:128.000000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:4.666667pt;}
.y63{bottom:4.680000pt;}
.y7b{bottom:4.693333pt;}
.y1a{bottom:4.708000pt;}
.y27{bottom:4.721333pt;}
.y2f{bottom:4.733333pt;}
.y4a{bottom:4.746667pt;}
.y6d{bottom:4.760000pt;}
.y5c{bottom:4.773333pt;}
.y67{bottom:4.788000pt;}
.y82{bottom:4.800000pt;}
.y65{bottom:4.813333pt;}
.y37{bottom:4.866667pt;}
.y4f{bottom:4.880000pt;}
.y39{bottom:4.908000pt;}
.y61{bottom:5.733333pt;}
.y22{bottom:5.746667pt;}
.y2d{bottom:5.760000pt;}
.y79{bottom:5.813333pt;}
.y5a{bottom:5.826667pt;}
.ya9{bottom:5.840000pt;}
.y8c{bottom:5.841333pt;}
.ya5{bottom:5.854667pt;}
.y46{bottom:5.866667pt;}
.y45{bottom:6.666667pt;}
.y60{bottom:6.693333pt;}
.y21{bottom:6.708000pt;}
.y2c{bottom:6.721333pt;}
.y78{bottom:6.774667pt;}
.y59{bottom:6.788000pt;}
.y8b{bottom:6.800000pt;}
.y6b{bottom:6.813333pt;}
.y43{bottom:7.613333pt;}
.y57{bottom:7.733333pt;}
.y9e{bottom:7.788000pt;}
.yac{bottom:7.921333pt;}
.y80{bottom:8.413333pt;}
.y48{bottom:10.413333pt;}
.y68{bottom:10.426667pt;}
.y75{bottom:10.441333pt;}
.y7e{bottom:10.466667pt;}
.y50{bottom:12.400000pt;}
.y97{bottom:12.441333pt;}
.y71{bottom:12.546667pt;}
.y3a{bottom:12.588000pt;}
.yad{bottom:15.600000pt;}
.ya7{bottom:20.000000pt;}
.y36{bottom:20.066667pt;}
.y4e{bottom:20.080000pt;}
.y38{bottom:20.108000pt;}
.y96{bottom:20.121333pt;}
.y8e{bottom:20.146667pt;}
.ya4{bottom:22.013333pt;}
.y6a{bottom:22.174667pt;}
.yab{bottom:23.121333pt;}
.y7f{bottom:23.613333pt;}
.y1e{bottom:25.746667pt;}
.y9a{bottom:27.813333pt;}
.y9c{bottom:35.426667pt;}
.y1c{bottom:36.788000pt;}
.y99{bottom:39.974667pt;}
.y9d{bottom:52.600000pt;}
.y98{bottom:52.733333pt;}
.y23{bottom:66.200000pt;}
.y73{bottom:68.480000pt;}
.y9b{bottom:78.400000pt;}
.y41{bottom:79.146667pt;}
.ya1{bottom:86.066667pt;}
.y29{bottom:93.413333pt;}
.y3d{bottom:93.906667pt;}
.y6f{bottom:100.574667pt;}
.ya0{bottom:101.266667pt;}
.y28{bottom:101.533333pt;}
.y35{bottom:101.600000pt;}
.y88{bottom:103.893333pt;}
.y3c{bottom:106.066667pt;}
.y55{bottom:107.388000pt;}
.y25{bottom:115.946667pt;}
.y85{bottom:118.746667pt;}
.y24{bottom:128.266667pt;}
.y83{bottom:129.000000pt;}
.y95{bottom:129.066667pt;}
.y52{bottom:130.400000pt;}
.y84{bottom:131.066667pt;}
.y34{bottom:136.933333pt;}
.y33{bottom:156.933333pt;}
.y87{bottom:164.333333pt;}
.y94{bottom:164.400000pt;}
.y32{bottom:176.933333pt;}
.y93{bottom:184.400000pt;}
.y31{bottom:196.933333pt;}
.y92{bottom:204.400000pt;}
.y30{bottom:216.933333pt;}
.y91{bottom:224.400000pt;}
.y2e{bottom:236.933333pt;}
.y90{bottom:244.400000pt;}
.y2b{bottom:256.866667pt;}
.y8f{bottom:264.400000pt;}
.y2a{bottom:278.866667pt;}
.y8d{bottom:284.400000pt;}
.y26{bottom:298.866667pt;}
.y1b{bottom:318.800000pt;}
.y8a{bottom:319.666667pt;}
.y20{bottom:340.800000pt;}
.y89{bottom:341.600000pt;}
.y1f{bottom:360.800000pt;}
.y86{bottom:367.333333pt;}
.y1d{bottom:380.800000pt;}
.y6e{bottom:387.333333pt;}
.y19{bottom:400.800000pt;}
.y81{bottom:409.666667pt;}
.y7d{bottom:429.600000pt;}
.y72{bottom:429.666667pt;}
.y18{bottom:437.026667pt;}
.y7c{bottom:454.600000pt;}
.y7a{bottom:473.933333pt;}
.y77{bottom:493.933333pt;}
.y76{bottom:515.933333pt;}
.y17{bottom:524.866667pt;}
.y74{bottom:535.866667pt;}
.y16{bottom:540.226667pt;}
.y15{bottom:555.588000pt;}
.y70{bottom:561.600000pt;}
.y14{bottom:570.946667pt;}
.y13{bottom:586.308000pt;}
.y51{bottom:596.866667pt;}
.y69{bottom:596.933333pt;}
.y12{bottom:601.666667pt;}
.y6c{bottom:616.266667pt;}
.y11{bottom:616.866667pt;}
.y10{bottom:632.226667pt;}
.y54{bottom:636.200000pt;}
.yf{bottom:647.588000pt;}
.y66{bottom:661.200000pt;}
.ye{bottom:662.946667pt;}
.yd{bottom:678.308000pt;}
.y64{bottom:680.533333pt;}
.yc{bottom:693.666667pt;}
.y62{bottom:699.866667pt;}
.yb{bottom:708.866667pt;}
.y5f{bottom:719.133333pt;}
.ya{bottom:724.226667pt;}
.y9{bottom:739.588000pt;}
.y5e{bottom:740.466667pt;}
.y5d{bottom:759.800000pt;}
.y8{bottom:770.946667pt;}
.y5b{bottom:779.133333pt;}
.y7{bottom:790.788000pt;}
.y58{bottom:798.400000pt;}
.y6{bottom:817.666667pt;}
.y56{bottom:820.333333pt;}
.y5{bottom:837.346667pt;}
.y53{bottom:846.066667pt;}
.y3b{bottom:866.000000pt;}
.y4d{bottom:866.066667pt;}
.y4{bottom:868.226667pt;}
.y40{bottom:901.400000pt;}
.y3{bottom:907.906667pt;}
.yaa{bottom:919.666667pt;}
.y4c{bottom:921.400000pt;}
.y2{bottom:937.188000pt;}
.y4b{bottom:941.400000pt;}
.y9f{bottom:958.000000pt;}
.ya8{bottom:958.066667pt;}
.y49{bottom:961.400000pt;}
.ya6{bottom:980.066667pt;}
.y47{bottom:981.333333pt;}
.y1{bottom:996.866667pt;}
.y44{bottom:1007.000000pt;}
.ya3{bottom:1015.333333pt;}
.y42{bottom:1028.933333pt;}
.ya2{bottom:1052.600000pt;}
.y3e{bottom:1054.600000pt;}
.h19{height:19.266667pt;}
.hb{height:19.933333pt;}
.h1a{height:21.266667pt;}
.hd{height:21.933333pt;}
.h8{height:22.266667pt;}
.h1b{height:24.933333pt;}
.h5{height:25.255208pt;}
.h16{height:25.600000pt;}
.h15{height:25.666667pt;}
.h24{height:25.733333pt;}
.h11{height:35.266667pt;}
.h12{height:35.333333pt;}
.h26{height:37.266667pt;}
.h9{height:37.986198pt;}
.h27{height:38.333333pt;}
.h6{height:38.659896pt;}
.h1c{height:39.266667pt;}
.h1f{height:42.266667pt;}
.he{height:42.702083pt;}
.h4{height:43.175208pt;}
.h23{height:50.600000pt;}
.hc{height:61.933333pt;}
.h3{height:65.625000pt;}
.h22{height:76.266667pt;}
.ha{height:81.933333pt;}
.h7{height:87.500000pt;}
.h25{height:116.533333pt;}
.h2{height:131.250000pt;}
.h1e{height:131.866667pt;}
.h14{height:153.200000pt;}
.h10{height:197.266667pt;}
.h21{height:202.933333pt;}
.h13{height:208.533333pt;}
.h1d{height:209.533333pt;}
.h18{height:209.800000pt;}
.hf{height:252.600000pt;}
.h20{height:258.266667pt;}
.h17{height:269.133333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:62.066667pt;}
.w6{width:64.066667pt;}
.w2{width:99.066667pt;}
.w5{width:109.066667pt;}
.w7{width:362.066667pt;}
.w4{width:535.066667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.960000pt;}
.x6{left:6.200000pt;}
.x2{left:42.000000pt;}
.x1{left:48.000000pt;}
.x4{left:141.000000pt;}
.x5{left:203.000000pt;}
.x7{left:312.000000pt;}
.x8{left:376.000000pt;}
}




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