
    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_d91aa8c06323f22efbf65eac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_7489069e3efc4852f504be21.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_ba83e73c907ca93585dfb085.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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7330ede1d7dd7089aa73c60e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7f37bde0dd2e5460ecbf1293.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a48564ac189921b0d3711885.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.513600px;}
.ls15{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls1b{letter-spacing:-0.008640px;}
.ls7{letter-spacing:-0.004320px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.070560px;}
.ls5{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.978000px;}
.ls10{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.512000px;}
.ls1a{letter-spacing:11.466720px;}
.lsf{letter-spacing:11.700000px;}
.ls19{letter-spacing:41.850720px;}
.ls12{letter-spacing:152.010720px;}
.ls14{letter-spacing:172.170720px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.020000px;}
.ws11{word-spacing:-15.918000px;}
.ws7{word-spacing:-15.606000px;}
.wsb{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.093600px;}
.ws4{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws12{word-spacing:-14.680200px;}
.ws10{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.426400px;}
.ws9{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.715680px;}
.ws14{word-spacing:-9.711360px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1578.070080px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-930.967920px;}
._d{margin-left:-721.224720px;}
._e{margin-left:-693.074160px;}
._19{margin-left:-595.620000px;}
._1a{margin-left:-579.160800px;}
._a{margin-left:-574.927920px;}
._16{margin-left:-538.559640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._17{margin-left:-428.114160px;}
._27{margin-left:-215.280000px;}
._f{margin-left:-182.160000px;}
._14{margin-left:-174.240000px;}
._15{margin-left:-159.807360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-143.280000px;}
._28{margin-left:-132.480000px;}
._13{margin-left:-130.625280px;}
._12{margin-left:-129.600000px;}
._10{margin-left:-115.920000px;}
._18{margin-left:-66.240000px;}
._11{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._21{width:4.133040px;}
._22{width:5.512320px;}
._1f{width:7.310640px;}
._1e{width:8.751120px;}
._29{width:9.901680px;}
._20{width:11.014320px;}
._24{width:12.590880px;}
._2b{width:13.935120px;}
._23{width:16.751520px;}
._2a{width:18.327600px;}
._2f{width:22.391280px;}
._26{width:38.710080px;}
._25{width:40.233600px;}
._1d{width:45.581760px;}
._2e{width:65.386800px;}
._2d{width:66.789120px;}
._2c{width:186.264000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.840000px;}
.y35{bottom:86.256000px;}
.yb7{bottom:88.776000px;}
.y6d{bottom:90.756000px;}
.y9a{bottom:97.596000px;}
.y34{bottom:106.056000px;}
.y6c{bottom:110.376000px;}
.y99{bottom:117.396000px;}
.y33{bottom:125.856000px;}
.y6b{bottom:128.916000px;}
.yb6{bottom:130.176000px;}
.y9d{bottom:130.716000px;}
.y98{bottom:137.376000px;}
.y32{bottom:145.656000px;}
.yb5{bottom:149.976000px;}
.y6a{bottom:150.690000px;}
.y97{bottom:157.170000px;}
.y31{bottom:165.450000px;}
.yb4{bottom:169.770000px;}
.y69{bottom:170.490000px;}
.y96{bottom:176.970000px;}
.y30{bottom:185.430000px;}
.yb3{bottom:189.750000px;}
.y68{bottom:190.290000px;}
.y95{bottom:196.770000px;}
.y2f{bottom:205.230000px;}
.yb2{bottom:209.550000px;}
.y67{bottom:210.090000px;}
.y94{bottom:216.570000px;}
.y2e{bottom:225.030000px;}
.yb1{bottom:229.350000px;}
.y66{bottom:229.890000px;}
.y93{bottom:236.550000px;}
.y2d{bottom:244.830000px;}
.yb0{bottom:249.150000px;}
.y65{bottom:249.870000px;}
.y92{bottom:256.350000px;}
.y2c{bottom:264.630000px;}
.yaf{bottom:268.950000px;}
.y64{bottom:269.670000px;}
.y91{bottom:276.150000px;}
.y2b{bottom:284.610000px;}
.yae{bottom:288.930000px;}
.y63{bottom:289.470000px;}
.y90{bottom:295.950000px;}
.y2a{bottom:304.410000px;}
.yad{bottom:308.730000px;}
.y9c{bottom:308.910000px;}
.y62{bottom:309.270000px;}
.y8f{bottom:315.750000px;}
.y29{bottom:324.210000px;}
.yac{bottom:328.575000px;}
.y61{bottom:329.115000px;}
.y8e{bottom:335.775000px;}
.y28{bottom:344.055000px;}
.yab{bottom:348.375000px;}
.y60{bottom:349.095000px;}
.y8d{bottom:356.655000px;}
.y27{bottom:363.855000px;}
.yaa{bottom:368.175000px;}
.y5f{bottom:368.895000px;}
.y8c{bottom:376.455000px;}
.y26{bottom:383.835000px;}
.ya9{bottom:387.795000px;}
.y5e{bottom:388.695000px;}
.y8b{bottom:397.335000px;}
.y25{bottom:403.635000px;}
.ya8{bottom:406.335000px;}
.y5d{bottom:408.495000px;}
.y8a{bottom:417.135000px;}
.y24{bottom:423.435000px;}
.ya7{bottom:428.115000px;}
.y5c{bottom:428.295000px;}
.y89{bottom:438.195000px;}
.y23{bottom:443.235000px;}
.ya6{bottom:447.915000px;}
.y5b{bottom:448.275000px;}
.y88{bottom:457.995000px;}
.y22{bottom:463.035000px;}
.ya5{bottom:467.715000px;}
.y5a{bottom:468.075000px;}
.y87{bottom:478.875000px;}
.y21{bottom:483.015000px;}
.ya4{bottom:487.515000px;}
.y59{bottom:487.875000px;}
.y86{bottom:498.675000px;}
.y20{bottom:502.815000px;}
.ya3{bottom:507.315000px;}
.y58{bottom:507.675000px;}
.y85{bottom:518.475000px;}
.y1f{bottom:522.615000px;}
.ya2{bottom:527.295000px;}
.y57{bottom:527.475000px;}
.y84{bottom:538.455000px;}
.y1e{bottom:542.415000px;}
.ya1{bottom:547.095000px;}
.y56{bottom:547.455000px;}
.y83{bottom:558.255000px;}
.y1d{bottom:562.215000px;}
.ya0{bottom:566.535000px;}
.y55{bottom:567.255000px;}
.y82{bottom:578.055000px;}
.y1c{bottom:581.835000px;}
.y9f{bottom:585.255000px;}
.y54{bottom:587.055000px;}
.y81{bottom:597.885000px;}
.y1b{bottom:600.405000px;}
.y53{bottom:606.885000px;}
.y80{bottom:617.685000px;}
.y1a{bottom:624.345000px;}
.y52{bottom:626.685000px;}
.y7f{bottom:637.665000px;}
.y51{bottom:646.665000px;}
.y19{bottom:653.145000px;}
.y7e{bottom:657.105000px;}
.y50{bottom:666.465000px;}
.y18{bottom:673.125000px;}
.y7d{bottom:677.265000px;}
.y4f{bottom:686.265000px;}
.y17{bottom:692.925000px;}
.y7c{bottom:697.065000px;}
.y4e{bottom:706.065000px;}
.y16{bottom:712.725000px;}
.y7b{bottom:716.865000px;}
.y4d{bottom:725.865000px;}
.y15{bottom:732.525000px;}
.y7a{bottom:736.845000px;}
.y4c{bottom:745.485000px;}
.y9b{bottom:745.845000px;}
.y14{bottom:752.325000px;}
.y79{bottom:756.645000px;}
.y4b{bottom:765.645000px;}
.y13{bottom:772.305000px;}
.y78{bottom:776.445000px;}
.y4a{bottom:785.445000px;}
.y12{bottom:792.105000px;}
.y77{bottom:796.245000px;}
.y49{bottom:805.245000px;}
.y11{bottom:811.905000px;}
.y76{bottom:816.045000px;}
.y48{bottom:825.045000px;}
.y10{bottom:831.705000px;}
.y75{bottom:836.025000px;}
.y9e{bottom:844.665000px;}
.y47{bottom:845.025000px;}
.yf{bottom:851.505000px;}
.y74{bottom:855.825000px;}
.y46{bottom:864.870000px;}
.ye{bottom:871.530000px;}
.y73{bottom:875.670000px;}
.y45{bottom:884.670000px;}
.yd{bottom:891.330000px;}
.y72{bottom:895.110000px;}
.y44{bottom:904.470000px;}
.yc{bottom:912.930000px;}
.y71{bottom:915.270000px;}
.y43{bottom:924.270000px;}
.y70{bottom:935.250000px;}
.yb{bottom:938.490000px;}
.y42{bottom:944.250000px;}
.ya{bottom:953.430000px;}
.y6f{bottom:955.050000px;}
.y41{bottom:964.050000px;}
.y9{bottom:974.850000px;}
.y40{bottom:983.850000px;}
.y6e{bottom:994.290000px;}
.y8{bottom:997.890000px;}
.y3f{bottom:1003.650000px;}
.y3e{bottom:1023.450000px;}
.y7{bottom:1029.750000px;}
.y3d{bottom:1043.430000px;}
.y3c{bottom:1063.230000px;}
.y5{bottom:1068.630000px;}
.y3b{bottom:1083.030000px;}
.y4{bottom:1099.410000px;}
.y3a{bottom:1102.830000px;}
.y39{bottom:1122.630000px;}
.y3{bottom:1130.400000px;}
.yb8{bottom:1142.280000px;}
.y38{bottom:1142.640000px;}
.y2{bottom:1161.180000px;}
.y37{bottom:1171.800000px;}
.y1{bottom:1192.140000px;}
.y36{bottom:1193.580000px;}
.h7{height:38.158594px;}
.hb{height:41.726953px;}
.h5{height:58.651172px;}
.h9{height:59.038594px;}
.h8{height:60.226875px;}
.hc{height:61.423863px;}
.h3{height:65.010937px;}
.ha{height:65.884219px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x3{left:80.999987px;}
.x4{left:108.035987px;}
.x2{left:795.749987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.456533pt;}
.ls15{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls1b{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:-0.003840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.062720pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.869333pt;}
.ls10{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls1a{letter-spacing:10.192640pt;}
.lsf{letter-spacing:10.400000pt;}
.ls19{letter-spacing:37.200640pt;}
.ls12{letter-spacing:135.120640pt;}
.ls14{letter-spacing:153.040640pt;}
.wse{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.240000pt;}
.ws11{word-spacing:-14.149333pt;}
.ws7{word-spacing:-13.872000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.416533pt;}
.ws4{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws12{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.823467pt;}
.ws9{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.636160pt;}
.ws14{word-spacing:-8.632320pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1402.728960pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-827.527040pt;}
._d{margin-left:-641.088640pt;}
._e{margin-left:-616.065920pt;}
._19{margin-left:-529.440000pt;}
._1a{margin-left:-514.809600pt;}
._a{margin-left:-511.047040pt;}
._16{margin-left:-478.719680pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._17{margin-left:-380.545920pt;}
._27{margin-left:-191.360000pt;}
._f{margin-left:-161.920000pt;}
._14{margin-left:-154.880000pt;}
._15{margin-left:-142.050987pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-127.360000pt;}
._28{margin-left:-117.760000pt;}
._13{margin-left:-116.111360pt;}
._12{margin-left:-115.200000pt;}
._10{margin-left:-103.040000pt;}
._18{margin-left:-58.880000pt;}
._11{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._21{width:3.673813pt;}
._22{width:4.899840pt;}
._1f{width:6.498347pt;}
._1e{width:7.778773pt;}
._29{width:8.801493pt;}
._20{width:9.790507pt;}
._24{width:11.191893pt;}
._2b{width:12.386773pt;}
._23{width:14.890240pt;}
._2a{width:16.291200pt;}
._2f{width:19.903360pt;}
._26{width:34.408960pt;}
._25{width:35.763200pt;}
._1d{width:40.517120pt;}
._2e{width:58.121600pt;}
._2d{width:59.368107pt;}
._2c{width:165.568000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.080000pt;}
.y35{bottom:76.672000pt;}
.yb7{bottom:78.912000pt;}
.y6d{bottom:80.672000pt;}
.y9a{bottom:86.752000pt;}
.y34{bottom:94.272000pt;}
.y6c{bottom:98.112000pt;}
.y99{bottom:104.352000pt;}
.y33{bottom:111.872000pt;}
.y6b{bottom:114.592000pt;}
.yb6{bottom:115.712000pt;}
.y9d{bottom:116.192000pt;}
.y98{bottom:122.112000pt;}
.y32{bottom:129.472000pt;}
.yb5{bottom:133.312000pt;}
.y6a{bottom:133.946667pt;}
.y97{bottom:139.706667pt;}
.y31{bottom:147.066667pt;}
.yb4{bottom:150.906667pt;}
.y69{bottom:151.546667pt;}
.y96{bottom:157.306667pt;}
.y30{bottom:164.826667pt;}
.yb3{bottom:168.666667pt;}
.y68{bottom:169.146667pt;}
.y95{bottom:174.906667pt;}
.y2f{bottom:182.426667pt;}
.yb2{bottom:186.266667pt;}
.y67{bottom:186.746667pt;}
.y94{bottom:192.506667pt;}
.y2e{bottom:200.026667pt;}
.yb1{bottom:203.866667pt;}
.y66{bottom:204.346667pt;}
.y93{bottom:210.266667pt;}
.y2d{bottom:217.626667pt;}
.yb0{bottom:221.466667pt;}
.y65{bottom:222.106667pt;}
.y92{bottom:227.866667pt;}
.y2c{bottom:235.226667pt;}
.yaf{bottom:239.066667pt;}
.y64{bottom:239.706667pt;}
.y91{bottom:245.466667pt;}
.y2b{bottom:252.986667pt;}
.yae{bottom:256.826667pt;}
.y63{bottom:257.306667pt;}
.y90{bottom:263.066667pt;}
.y2a{bottom:270.586667pt;}
.yad{bottom:274.426667pt;}
.y9c{bottom:274.586667pt;}
.y62{bottom:274.906667pt;}
.y8f{bottom:280.666667pt;}
.y29{bottom:288.186667pt;}
.yac{bottom:292.066667pt;}
.y61{bottom:292.546667pt;}
.y8e{bottom:298.466667pt;}
.y28{bottom:305.826667pt;}
.yab{bottom:309.666667pt;}
.y60{bottom:310.306667pt;}
.y8d{bottom:317.026667pt;}
.y27{bottom:323.426667pt;}
.yaa{bottom:327.266667pt;}
.y5f{bottom:327.906667pt;}
.y8c{bottom:334.626667pt;}
.y26{bottom:341.186667pt;}
.ya9{bottom:344.706667pt;}
.y5e{bottom:345.506667pt;}
.y8b{bottom:353.186667pt;}
.y25{bottom:358.786667pt;}
.ya8{bottom:361.186667pt;}
.y5d{bottom:363.106667pt;}
.y8a{bottom:370.786667pt;}
.y24{bottom:376.386667pt;}
.ya7{bottom:380.546667pt;}
.y5c{bottom:380.706667pt;}
.y89{bottom:389.506667pt;}
.y23{bottom:393.986667pt;}
.ya6{bottom:398.146667pt;}
.y5b{bottom:398.466667pt;}
.y88{bottom:407.106667pt;}
.y22{bottom:411.586667pt;}
.ya5{bottom:415.746667pt;}
.y5a{bottom:416.066667pt;}
.y87{bottom:425.666667pt;}
.y21{bottom:429.346667pt;}
.ya4{bottom:433.346667pt;}
.y59{bottom:433.666667pt;}
.y86{bottom:443.266667pt;}
.y20{bottom:446.946667pt;}
.ya3{bottom:450.946667pt;}
.y58{bottom:451.266667pt;}
.y85{bottom:460.866667pt;}
.y1f{bottom:464.546667pt;}
.ya2{bottom:468.706667pt;}
.y57{bottom:468.866667pt;}
.y84{bottom:478.626667pt;}
.y1e{bottom:482.146667pt;}
.ya1{bottom:486.306667pt;}
.y56{bottom:486.626667pt;}
.y83{bottom:496.226667pt;}
.y1d{bottom:499.746667pt;}
.ya0{bottom:503.586667pt;}
.y55{bottom:504.226667pt;}
.y82{bottom:513.826667pt;}
.y1c{bottom:517.186667pt;}
.y9f{bottom:520.226667pt;}
.y54{bottom:521.826667pt;}
.y81{bottom:531.453333pt;}
.y1b{bottom:533.693333pt;}
.y53{bottom:539.453333pt;}
.y80{bottom:549.053333pt;}
.y1a{bottom:554.973333pt;}
.y52{bottom:557.053333pt;}
.y7f{bottom:566.813333pt;}
.y51{bottom:574.813333pt;}
.y19{bottom:580.573333pt;}
.y7e{bottom:584.093333pt;}
.y50{bottom:592.413333pt;}
.y18{bottom:598.333333pt;}
.y7d{bottom:602.013333pt;}
.y4f{bottom:610.013333pt;}
.y17{bottom:615.933333pt;}
.y7c{bottom:619.613333pt;}
.y4e{bottom:627.613333pt;}
.y16{bottom:633.533333pt;}
.y7b{bottom:637.213333pt;}
.y4d{bottom:645.213333pt;}
.y15{bottom:651.133333pt;}
.y7a{bottom:654.973333pt;}
.y4c{bottom:662.653333pt;}
.y9b{bottom:662.973333pt;}
.y14{bottom:668.733333pt;}
.y79{bottom:672.573333pt;}
.y4b{bottom:680.573333pt;}
.y13{bottom:686.493333pt;}
.y78{bottom:690.173333pt;}
.y4a{bottom:698.173333pt;}
.y12{bottom:704.093333pt;}
.y77{bottom:707.773333pt;}
.y49{bottom:715.773333pt;}
.y11{bottom:721.693333pt;}
.y76{bottom:725.373333pt;}
.y48{bottom:733.373333pt;}
.y10{bottom:739.293333pt;}
.y75{bottom:743.133333pt;}
.y9e{bottom:750.813333pt;}
.y47{bottom:751.133333pt;}
.yf{bottom:756.893333pt;}
.y74{bottom:760.733333pt;}
.y46{bottom:768.773333pt;}
.ye{bottom:774.693333pt;}
.y73{bottom:778.373333pt;}
.y45{bottom:786.373333pt;}
.yd{bottom:792.293333pt;}
.y72{bottom:795.653333pt;}
.y44{bottom:803.973333pt;}
.yc{bottom:811.493333pt;}
.y71{bottom:813.573333pt;}
.y43{bottom:821.573333pt;}
.y70{bottom:831.333333pt;}
.yb{bottom:834.213333pt;}
.y42{bottom:839.333333pt;}
.ya{bottom:847.493333pt;}
.y6f{bottom:848.933333pt;}
.y41{bottom:856.933333pt;}
.y9{bottom:866.533333pt;}
.y40{bottom:874.533333pt;}
.y6e{bottom:883.813333pt;}
.y8{bottom:887.013333pt;}
.y3f{bottom:892.133333pt;}
.y3e{bottom:909.733333pt;}
.y7{bottom:915.333333pt;}
.y3d{bottom:927.493333pt;}
.y3c{bottom:945.093333pt;}
.y5{bottom:949.893333pt;}
.y3b{bottom:962.693333pt;}
.y4{bottom:977.253333pt;}
.y3a{bottom:980.293333pt;}
.y39{bottom:997.893333pt;}
.y3{bottom:1004.800000pt;}
.yb8{bottom:1015.360000pt;}
.y38{bottom:1015.680000pt;}
.y2{bottom:1032.160000pt;}
.y37{bottom:1041.600000pt;}
.y1{bottom:1059.680000pt;}
.y36{bottom:1060.960000pt;}
.h7{height:33.918750pt;}
.hb{height:37.090625pt;}
.h5{height:52.134375pt;}
.h9{height:52.478750pt;}
.h8{height:53.535000pt;}
.hc{height:54.598989pt;}
.h3{height:57.787500pt;}
.ha{height:58.563750pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x3{left:71.999988pt;}
.x4{left:96.031988pt;}
.x2{left:707.333322pt;}
}




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