
    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_b67bc2a63a4190c0e0f020bb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_290986ec28c311e0506c2aa6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_946e4bd8f8004a0d51f13a51.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_916c65e5c30d33ba661164dc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_b50ad73d8f5c0db450f347bb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.494000px;}
.ls8{letter-spacing:-1.260000px;}
.ls11{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.208200px;}
.ls7{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206640px;}
.ls14{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.900000px;}
.ls13{letter-spacing:2.340000px;}
.ls10{letter-spacing:65.466720px;}
.ls12{letter-spacing:65.610720px;}
.ls15{letter-spacing:73.386720px;}
.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;}
}
.ws1{word-spacing:-23.921280px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1166.086080px;}
._1c{margin-left:-3.771120px;}
._7{margin-left:-2.443920px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:2.538480px;}
._a{width:3.931680px;}
._9{width:4.953120px;}
._8{width:6.095520px;}
._12{width:7.484160px;}
._e{width:9.194640px;}
._f{width:10.324080px;}
._c{width:12.347520px;}
._1b{width:13.841520px;}
._11{width:16.052640px;}
._25{width:17.151120px;}
._d{width:18.346320px;}
._1f{width:19.389600px;}
._18{width:20.796480px;}
._16{width:22.327440px;}
._15{width:23.605200px;}
._26{width:24.680880px;}
._24{width:25.696560px;}
._23{width:26.832480px;}
._14{width:28.124880px;}
._13{width:29.330640px;}
._17{width:31.221600px;}
._2a{width:32.688000px;}
._10{width:36.095040px;}
._1a{width:48.823920px;}
._19{width:49.959360px;}
._28{width:53.103840px;}
._29{width:54.142560px;}
._27{width:58.026960px;}
._1e{width:77.609280px;}
._1d{width:78.904080px;}
._21{width:92.687760px;}
._20{width:116.890560px;}
._22{width:126.332640px;}
._b{width:201.204000px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y60{bottom:5.940000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.y4a{bottom:19.620000px;}
.y5a{bottom:25.785000px;}
.y48{bottom:29.520000px;}
.y4c{bottom:33.480000px;}
.y4f{bottom:35.640000px;}
.ya{bottom:36.180000px;}
.y49{bottom:39.420000px;}
.y56{bottom:39.960000px;}
.y55{bottom:42.300000px;}
.y6{bottom:52.920000px;}
.y4b{bottom:53.280000px;}
.y4e{bottom:55.620000px;}
.y68{bottom:87.300000px;}
.y39{bottom:87.840000px;}
.y88{bottom:90.540000px;}
.y76{bottom:92.340000px;}
.y67{bottom:107.100000px;}
.y38{bottom:107.640000px;}
.y87{bottom:110.340000px;}
.y75{bottom:112.140000px;}
.y66{bottom:126.900000px;}
.y37{bottom:127.620000px;}
.y53{bottom:127.800000px;}
.y86{bottom:130.140000px;}
.y8d{bottom:131.940000px;}
.y74{bottom:132.120000px;}
.y65{bottom:146.700000px;}
.y36{bottom:147.420000px;}
.y52{bottom:147.600000px;}
.y85{bottom:149.940000px;}
.y8c{bottom:151.770000px;}
.y73{bottom:151.950000px;}
.y64{bottom:166.710000px;}
.y35{bottom:167.250000px;}
.y51{bottom:167.580000px;}
.y84{bottom:169.770000px;}
.y72{bottom:171.750000px;}
.y34{bottom:187.050000px;}
.y83{bottom:189.750000px;}
.y71{bottom:191.550000px;}
.y8b{bottom:200.550000px;}
.y63{bottom:201.270000px;}
.y33{bottom:206.850000px;}
.y70{bottom:208.110000px;}
.y82{bottom:209.550000px;}
.y8a{bottom:220.350000px;}
.y62{bottom:223.590000px;}
.y32{bottom:226.830000px;}
.y81{bottom:229.350000px;}
.y89{bottom:240.150000px;}
.y61{bottom:245.910000px;}
.y31{bottom:246.630000px;}
.y80{bottom:249.150000px;}
.y30{bottom:266.430000px;}
.y5f{bottom:268.230000px;}
.y7f{bottom:268.950000px;}
.y2f{bottom:286.230000px;}
.y7e{bottom:288.930000px;}
.y5e{bottom:290.730000px;}
.y2e{bottom:306.030000px;}
.y7d{bottom:308.730000px;}
.y5d{bottom:313.050000px;}
.y2d{bottom:326.010000px;}
.y7c{bottom:328.530000px;}
.y5c{bottom:335.370000px;}
.y2c{bottom:345.810000px;}
.y7b{bottom:348.330000px;}
.y5b{bottom:357.690000px;}
.y2b{bottom:365.610000px;}
.y7a{bottom:368.130000px;}
.y59{bottom:380.010000px;}
.y79{bottom:384.690000px;}
.y2a{bottom:385.410000px;}
.y29{bottom:405.255000px;}
.y28{bottom:425.235000px;}
.y58{bottom:426.315000px;}
.y27{bottom:445.035000px;}
.y57{bottom:453.315000px;}
.y26{bottom:464.835000px;}
.y50{bottom:468.075000px;}
.y25{bottom:484.635000px;}
.y24{bottom:504.435000px;}
.y54{bottom:522.975000px;}
.y23{bottom:524.415000px;}
.y22{bottom:544.215000px;}
.y21{bottom:564.015000px;}
.y4d{bottom:580.035000px;}
.y20{bottom:583.815000px;}
.y1f{bottom:603.615000px;}
.y6f{bottom:610.995000px;}
.y1e{bottom:623.595000px;}
.y6e{bottom:630.795000px;}
.y1d{bottom:643.395000px;}
.y6d{bottom:647.355000px;}
.y47{bottom:650.445000px;}
.y1c{bottom:663.225000px;}
.y1b{bottom:683.025000px;}
.y1a{bottom:702.825000px;}
.y46{bottom:724.245000px;}
.y19{bottom:724.965000px;}
.y18{bottom:744.765000px;}
.y9c{bottom:745.485000px;}
.y78{bottom:748.365000px;}
.y45{bottom:751.425000px;}
.y17{bottom:764.565000px;}
.y77{bottom:764.925000px;}
.y9b{bottom:765.285000px;}
.y44{bottom:771.225000px;}
.y16{bottom:784.545000px;}
.y9a{bottom:785.085000px;}
.y43{bottom:791.025000px;}
.y15{bottom:804.345000px;}
.y99{bottom:804.885000px;}
.y42{bottom:810.825000px;}
.y14{bottom:824.145000px;}
.y98{bottom:824.685000px;}
.y41{bottom:830.625000px;}
.y13{bottom:843.945000px;}
.y97{bottom:844.665000px;}
.y40{bottom:850.605000px;}
.y12{bottom:863.745000px;}
.y96{bottom:864.465000px;}
.y3f{bottom:870.405000px;}
.y95{bottom:884.265000px;}
.y11{bottom:885.885000px;}
.y3e{bottom:886.965000px;}
.y94{bottom:904.110000px;}
.y10{bottom:905.730000px;}
.y93{bottom:923.910000px;}
.yf{bottom:930.930000px;}
.y92{bottom:943.890000px;}
.ye{bottom:946.050000px;}
.y91{bottom:963.690000px;}
.yd{bottom:967.290000px;}
.y90{bottom:983.490000px;}
.yc{bottom:990.690000px;}
.y8f{bottom:1003.290000px;}
.yb{bottom:1022.550000px;}
.y8e{bottom:1023.090000px;}
.y6c{bottom:1043.070000px;}
.y5{bottom:1050.630000px;}
.y6b{bottom:1062.870000px;}
.y4{bottom:1081.950000px;}
.y6a{bottom:1082.670000px;}
.y69{bottom:1102.470000px;}
.y3{bottom:1112.730000px;}
.y3d{bottom:1122.270000px;}
.y3c{bottom:1142.250000px;}
.y2{bottom:1143.690000px;}
.y3b{bottom:1171.620000px;}
.y1{bottom:1177.560000px;}
.y3a{bottom:1193.400000px;}
.h5{height:21.240000px;}
.h15{height:21.600000px;}
.hb{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h14{height:39.816000px;}
.h4{height:41.726953px;}
.h9{height:42.164648px;}
.h16{height:43.506914px;}
.hc{height:46.251562px;}
.h3{height:46.736719px;}
.h12{height:49.255313px;}
.h8{height:50.273438px;}
.ha{height:53.224453px;}
.h13{height:54.000000px;}
.h11{height:56.340000px;}
.hd{height:59.439023px;}
.he{height:67.320000px;}
.h2{height:67.565039px;}
.hf{height:69.696000px;}
.h10{height:181.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:46.620000px;}
.w3{width:57.816000px;}
.we{width:74.340000px;}
.wd{width:74.700000px;}
.wb{width:77.220000px;}
.wc{width:83.016000px;}
.wf{width:93.996000px;}
.w9{width:100.476000px;}
.w8{width:107.280000px;}
.wa{width:114.120000px;}
.w7{width:120.816000px;}
.w10{width:127.296000px;}
.w6{width:174.810000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.xf{left:57.599987px;}
.x2{left:62.100000px;}
.x2b{left:68.939987px;}
.x1a{left:96.515987px;}
.x2a{left:100.835987px;}
.x13{left:108.035987px;}
.x14{left:112.716000px;}
.x4{left:120.636000px;}
.x1b{left:125.496000px;}
.x27{left:141.155987px;}
.x25{left:147.815987px;}
.x15{left:160.050000px;}
.x23{left:165.089987px;}
.x9{left:204.329987px;}
.x1c{left:287.175000px;}
.x8{left:297.399000px;}
.x7{left:302.439000px;}
.xb{left:324.254987px;}
.x16{left:335.595000px;}
.x12{left:351.254987px;}
.x1d{left:362.595000px;}
.xc{left:366.734987px;}
.x6{left:413.529000px;}
.x10{left:417.674987px;}
.x5{left:427.029000px;}
.x1e{left:437.655000px;}
.xa{left:446.504987px;}
.x17{left:457.125000px;}
.xd{left:473.504987px;}
.x2c{left:486.464987px;}
.x28{left:488.444987px;}
.x29{left:520.304987px;}
.xe{left:527.504987px;}
.x1f{left:532.365000px;}
.x18{left:565.125000px;}
.x11{left:589.424987px;}
.x20{left:660.390000px;}
.x19{left:666.330000px;}
.x26{left:683.249987px;}
.x24{left:696.389987px;}
.x22{left:699.809987px;}
.x21{left:733.469987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.328000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183680pt;}
.ls14{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls10{letter-spacing:58.192640pt;}
.ls12{letter-spacing:58.320640pt;}
.ls15{letter-spacing:65.232640pt;}
.ws1{word-spacing:-21.263360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1036.520960pt;}
._1c{margin-left:-3.352107pt;}
._7{margin-left:-2.172373pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.256427pt;}
._a{width:3.494827pt;}
._9{width:4.402773pt;}
._8{width:5.418240pt;}
._12{width:6.652587pt;}
._e{width:8.173013pt;}
._f{width:9.176960pt;}
._c{width:10.975573pt;}
._1b{width:12.303573pt;}
._11{width:14.269013pt;}
._25{width:15.245440pt;}
._d{width:16.307840pt;}
._1f{width:17.235200pt;}
._18{width:18.485760pt;}
._16{width:19.846613pt;}
._15{width:20.982400pt;}
._26{width:21.938560pt;}
._24{width:22.841387pt;}
._23{width:23.851093pt;}
._14{width:24.999893pt;}
._13{width:26.071680pt;}
._17{width:27.752533pt;}
._2a{width:29.056000pt;}
._10{width:32.084480pt;}
._1a{width:43.399040pt;}
._19{width:44.408320pt;}
._28{width:47.203413pt;}
._29{width:48.126720pt;}
._27{width:51.579520pt;}
._1e{width:68.986027pt;}
._1d{width:70.136960pt;}
._21{width:82.389120pt;}
._20{width:103.902720pt;}
._22{width:112.295680pt;}
._b{width:178.848000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y60{bottom:5.280000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.y4a{bottom:17.440000pt;}
.y5a{bottom:22.920000pt;}
.y48{bottom:26.240000pt;}
.y4c{bottom:29.760000pt;}
.y4f{bottom:31.680000pt;}
.ya{bottom:32.160000pt;}
.y49{bottom:35.040000pt;}
.y56{bottom:35.520000pt;}
.y55{bottom:37.600000pt;}
.y6{bottom:47.040000pt;}
.y4b{bottom:47.360000pt;}
.y4e{bottom:49.440000pt;}
.y68{bottom:77.600000pt;}
.y39{bottom:78.080000pt;}
.y88{bottom:80.480000pt;}
.y76{bottom:82.080000pt;}
.y67{bottom:95.200000pt;}
.y38{bottom:95.680000pt;}
.y87{bottom:98.080000pt;}
.y75{bottom:99.680000pt;}
.y66{bottom:112.800000pt;}
.y37{bottom:113.440000pt;}
.y53{bottom:113.600000pt;}
.y86{bottom:115.680000pt;}
.y8d{bottom:117.280000pt;}
.y74{bottom:117.440000pt;}
.y65{bottom:130.400000pt;}
.y36{bottom:131.040000pt;}
.y52{bottom:131.200000pt;}
.y85{bottom:133.280000pt;}
.y8c{bottom:134.906667pt;}
.y73{bottom:135.066667pt;}
.y64{bottom:148.186667pt;}
.y35{bottom:148.666667pt;}
.y51{bottom:148.960000pt;}
.y84{bottom:150.906667pt;}
.y72{bottom:152.666667pt;}
.y34{bottom:166.266667pt;}
.y83{bottom:168.666667pt;}
.y71{bottom:170.266667pt;}
.y8b{bottom:178.266667pt;}
.y63{bottom:178.906667pt;}
.y33{bottom:183.866667pt;}
.y70{bottom:184.986667pt;}
.y82{bottom:186.266667pt;}
.y8a{bottom:195.866667pt;}
.y62{bottom:198.746667pt;}
.y32{bottom:201.626667pt;}
.y81{bottom:203.866667pt;}
.y89{bottom:213.466667pt;}
.y61{bottom:218.586667pt;}
.y31{bottom:219.226667pt;}
.y80{bottom:221.466667pt;}
.y30{bottom:236.826667pt;}
.y5f{bottom:238.426667pt;}
.y7f{bottom:239.066667pt;}
.y2f{bottom:254.426667pt;}
.y7e{bottom:256.826667pt;}
.y5e{bottom:258.426667pt;}
.y2e{bottom:272.026667pt;}
.y7d{bottom:274.426667pt;}
.y5d{bottom:278.266667pt;}
.y2d{bottom:289.786667pt;}
.y7c{bottom:292.026667pt;}
.y5c{bottom:298.106667pt;}
.y2c{bottom:307.386667pt;}
.y7b{bottom:309.626667pt;}
.y5b{bottom:317.946667pt;}
.y2b{bottom:324.986667pt;}
.y7a{bottom:327.226667pt;}
.y59{bottom:337.786667pt;}
.y79{bottom:341.946667pt;}
.y2a{bottom:342.586667pt;}
.y29{bottom:360.226667pt;}
.y28{bottom:377.986667pt;}
.y58{bottom:378.946667pt;}
.y27{bottom:395.586667pt;}
.y57{bottom:402.946667pt;}
.y26{bottom:413.186667pt;}
.y50{bottom:416.066667pt;}
.y25{bottom:430.786667pt;}
.y24{bottom:448.386667pt;}
.y54{bottom:464.866667pt;}
.y23{bottom:466.146667pt;}
.y22{bottom:483.746667pt;}
.y21{bottom:501.346667pt;}
.y4d{bottom:515.586667pt;}
.y20{bottom:518.946667pt;}
.y1f{bottom:536.546667pt;}
.y6f{bottom:543.106667pt;}
.y1e{bottom:554.306667pt;}
.y6e{bottom:560.706667pt;}
.y1d{bottom:571.906667pt;}
.y6d{bottom:575.426667pt;}
.y47{bottom:578.173333pt;}
.y1c{bottom:589.533333pt;}
.y1b{bottom:607.133333pt;}
.y1a{bottom:624.733333pt;}
.y46{bottom:643.773333pt;}
.y19{bottom:644.413333pt;}
.y18{bottom:662.013333pt;}
.y9c{bottom:662.653333pt;}
.y78{bottom:665.213333pt;}
.y45{bottom:667.933333pt;}
.y17{bottom:679.613333pt;}
.y77{bottom:679.933333pt;}
.y9b{bottom:680.253333pt;}
.y44{bottom:685.533333pt;}
.y16{bottom:697.373333pt;}
.y9a{bottom:697.853333pt;}
.y43{bottom:703.133333pt;}
.y15{bottom:714.973333pt;}
.y99{bottom:715.453333pt;}
.y42{bottom:720.733333pt;}
.y14{bottom:732.573333pt;}
.y98{bottom:733.053333pt;}
.y41{bottom:738.333333pt;}
.y13{bottom:750.173333pt;}
.y97{bottom:750.813333pt;}
.y40{bottom:756.093333pt;}
.y12{bottom:767.773333pt;}
.y96{bottom:768.413333pt;}
.y3f{bottom:773.693333pt;}
.y95{bottom:786.013333pt;}
.y11{bottom:787.453333pt;}
.y3e{bottom:788.413333pt;}
.y94{bottom:803.653333pt;}
.y10{bottom:805.093333pt;}
.y93{bottom:821.253333pt;}
.yf{bottom:827.493333pt;}
.y92{bottom:839.013333pt;}
.ye{bottom:840.933333pt;}
.y91{bottom:856.613333pt;}
.yd{bottom:859.813333pt;}
.y90{bottom:874.213333pt;}
.yc{bottom:880.613333pt;}
.y8f{bottom:891.813333pt;}
.yb{bottom:908.933333pt;}
.y8e{bottom:909.413333pt;}
.y6c{bottom:927.173333pt;}
.y5{bottom:933.893333pt;}
.y6b{bottom:944.773333pt;}
.y4{bottom:961.733333pt;}
.y6a{bottom:962.373333pt;}
.y69{bottom:979.973333pt;}
.y3{bottom:989.093333pt;}
.y3d{bottom:997.573333pt;}
.y3c{bottom:1015.333333pt;}
.y2{bottom:1016.613333pt;}
.y3b{bottom:1041.440000pt;}
.y1{bottom:1046.720000pt;}
.y3a{bottom:1060.800000pt;}
.h5{height:18.880000pt;}
.h15{height:19.200000pt;}
.hb{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h14{height:35.392000pt;}
.h4{height:37.090625pt;}
.h9{height:37.479688pt;}
.h16{height:38.672812pt;}
.hc{height:41.112500pt;}
.h3{height:41.543750pt;}
.h12{height:43.782500pt;}
.h8{height:44.687500pt;}
.ha{height:47.310625pt;}
.h13{height:48.000000pt;}
.h11{height:50.080000pt;}
.hd{height:52.834688pt;}
.he{height:59.840000pt;}
.h2{height:60.057813pt;}
.hf{height:61.952000pt;}
.h10{height:161.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:41.440000pt;}
.w3{width:51.392000pt;}
.we{width:66.080000pt;}
.wd{width:66.400000pt;}
.wb{width:68.640000pt;}
.wc{width:73.792000pt;}
.wf{width:83.552000pt;}
.w9{width:89.312000pt;}
.w8{width:95.360000pt;}
.wa{width:101.440000pt;}
.w7{width:107.392000pt;}
.w10{width:113.152000pt;}
.w6{width:155.386667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.xf{left:51.199988pt;}
.x2{left:55.200000pt;}
.x2b{left:61.279988pt;}
.x1a{left:85.791988pt;}
.x2a{left:89.631988pt;}
.x13{left:96.031988pt;}
.x14{left:100.192000pt;}
.x4{left:107.232000pt;}
.x1b{left:111.552000pt;}
.x27{left:125.471988pt;}
.x25{left:131.391988pt;}
.x15{left:142.266667pt;}
.x23{left:146.746655pt;}
.x9{left:181.626655pt;}
.x1c{left:255.266667pt;}
.x8{left:264.354667pt;}
.x7{left:268.834667pt;}
.xb{left:288.226655pt;}
.x16{left:298.306667pt;}
.x12{left:312.226655pt;}
.x1d{left:322.306667pt;}
.xc{left:325.986655pt;}
.x6{left:367.581333pt;}
.x10{left:371.266655pt;}
.x5{left:379.581333pt;}
.x1e{left:389.026667pt;}
.xa{left:396.893322pt;}
.x17{left:406.333333pt;}
.xd{left:420.893322pt;}
.x2c{left:432.413322pt;}
.x28{left:434.173322pt;}
.x29{left:462.493322pt;}
.xe{left:468.893322pt;}
.x1f{left:473.213333pt;}
.x18{left:502.333333pt;}
.x11{left:523.933322pt;}
.x20{left:587.013333pt;}
.x19{left:592.293333pt;}
.x26{left:607.333322pt;}
.x24{left:619.013322pt;}
.x22{left:622.053322pt;}
.x21{left:651.973322pt;}
}




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