
    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_a32c2dd895b95bb118891222.woff2')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_cf29e8b3fdc352c8396ba4de.woff2')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_64c727a076c9011f1f3ab95f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_e1c68615ab87bf104ef3015d.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_6eaef09a3b770f59d3541a44.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b56c0099d42b41cd1962b1da.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0ba814c306163afeec78f110.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fdd8b5a8fcd65a955ce5f0dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_35720d101e332579c8d2c8a1.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v4{vertical-align:-53.460000px;}
.v3{vertical-align:-46.800000px;}
.v2{vertical-align:-43.620000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.382800px;}
.lsb{letter-spacing:-0.238800px;}
.lse{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:2.160000px;}
.ls2{letter-spacing:3.600000px;}
.ls3{letter-spacing:5.040000px;}
.ls11{letter-spacing:15.300000px;}
.lsf{letter-spacing:53.424000px;}
.ls8{letter-spacing:81.816960px;}
.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;}
}
.wsd{word-spacing:-18.648000px;}
.ws2{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.wse{word-spacing:-17.496000px;}
.ws0{word-spacing:-14.506440px;}
.ws9{word-spacing:-12.399264px;}
.ws6{word-spacing:-12.366720px;}
.ws1{word-spacing:-11.880000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:56.883600px;}
.wsb{word-spacing:57.135600px;}
.ws7{word-spacing:188.433600px;}
.ws5{word-spacing:188.613600px;}
.ws8{word-spacing:208.773600px;}
.wsa{word-spacing:230.310240px;}
._19{margin-left:-5.143680px;}
._7{margin-left:-4.032000px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.229120px;}
._4{width:3.525120px;}
._5{width:5.135040px;}
._12{width:6.333120px;}
._6{width:7.384320px;}
._15{width:8.615040px;}
._e{width:9.884160px;}
._d{width:11.122560px;}
._c{width:12.816000px;}
._8{width:14.760000px;}
._9{width:16.646400px;}
._a{width:19.566720px;}
._b{width:20.698560px;}
._14{width:21.775680px;}
._13{width:22.979520px;}
._f{width:24.298560px;}
._11{width:25.937280px;}
._10{width:27.176160px;}
._16{width:28.511520px;}
._1c{width:39.015360px;}
._1b{width:40.268160px;}
._1d{width:41.716800px;}
._1f{width:48.078720px;}
._1e{width:49.625280px;}
._18{width:56.579520px;}
._17{width:86.460000px;}
._1a{width:89.717760px;}
.fc6{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:54.864000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:7.200000px;}
.y96{bottom:7.560000px;}
.y99{bottom:9.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y90{bottom:14.760000px;}
.y9c{bottom:16.560000px;}
.y88{bottom:17.064000px;}
.y73{bottom:17.355000px;}
.ya0{bottom:19.440000px;}
.y93{bottom:22.680000px;}
.y8e{bottom:25.200000px;}
.y8c{bottom:30.960000px;}
.y95{bottom:31.350000px;}
.y98{bottom:32.760000px;}
.y81{bottom:46.980000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y75{bottom:78.270000px;}
.y82{bottom:84.780000px;}
.y7b{bottom:89.820000px;}
.y5c{bottom:107.676000px;}
.y74{bottom:108.000000px;}
.yb0{bottom:115.236000px;}
.y34{bottom:115.596000px;}
.y76{bottom:118.770000px;}
.y83{bottom:125.280000px;}
.y7c{bottom:130.320000px;}
.yc5{bottom:131.796000px;}
.yaf{bottom:138.996000px;}
.y33{bottom:139.716000px;}
.yc4{bottom:155.550000px;}
.y77{bottom:159.225000px;}
.yae{bottom:162.750000px;}
.y32{bottom:163.470000px;}
.y84{bottom:165.780000px;}
.y7d{bottom:170.820000px;}
.yc3{bottom:179.310000px;}
.yad{bottom:186.510000px;}
.y31{bottom:187.230000px;}
.y78{bottom:199.725000px;}
.yc2{bottom:203.115000px;}
.y85{bottom:206.280000px;}
.yac{bottom:210.315000px;}
.y30{bottom:211.035000px;}
.y7e{bottom:211.320000px;}
.yc1{bottom:226.875000px;}
.yab{bottom:234.075000px;}
.y2f{bottom:234.795000px;}
.y79{bottom:240.225000px;}
.y86{bottom:246.750000px;}
.yc0{bottom:250.635000px;}
.y7f{bottom:251.790000px;}
.y5e{bottom:253.830000px;}
.yaa{bottom:257.835000px;}
.y2e{bottom:258.555000px;}
.y71{bottom:272.550000px;}
.y5f{bottom:274.035000px;}
.ybf{bottom:274.395000px;}
.y7a{bottom:280.725000px;}
.ya9{bottom:281.595000px;}
.y2d{bottom:282.315000px;}
.y6b{bottom:283.500000px;}
.y6e{bottom:285.915000px;}
.y87{bottom:287.250000px;}
.y80{bottom:292.290000px;}
.y60{bottom:294.270000px;}
.y6d{bottom:295.200000px;}
.ybe{bottom:298.155000px;}
.y6f{bottom:299.670000px;}
.ya8{bottom:305.715000px;}
.y2c{bottom:306.075000px;}
.y69{bottom:306.105000px;}
.y61{bottom:314.460000px;}
.ybd{bottom:321.945000px;}
.ya7{bottom:329.505000px;}
.y2b{bottom:330.225000px;}
.y62{bottom:334.695000px;}
.y70{bottom:339.690000px;}
.ybc{bottom:346.065000px;}
.ya6{bottom:353.265000px;}
.y2a{bottom:353.985000px;}
.y63{bottom:354.885000px;}
.y6a{bottom:362.310000px;}
.y72{bottom:366.765000px;}
.ybb{bottom:369.825000px;}
.y64{bottom:375.120000px;}
.ya5{bottom:377.025000px;}
.y29{bottom:377.745000px;}
.yba{bottom:393.585000px;}
.y65{bottom:395.310000px;}
.ya4{bottom:400.785000px;}
.y28{bottom:401.505000px;}
.y66{bottom:415.545000px;}
.yb9{bottom:417.345000px;}
.ya3{bottom:424.545000px;}
.y27{bottom:425.265000px;}
.y67{bottom:435.750000px;}
.yb8{bottom:441.105000px;}
.y5b{bottom:443.265000px;}
.ya2{bottom:448.350000px;}
.y26{bottom:449.070000px;}
.y68{bottom:455.970000px;}
.y6c{bottom:463.395000px;}
.yb7{bottom:464.910000px;}
.y5a{bottom:467.070000px;}
.ya1{bottom:472.110000px;}
.y25{bottom:472.830000px;}
.yb6{bottom:488.670000px;}
.y9f{bottom:489.390000px;}
.y59{bottom:490.830000px;}
.y24{bottom:496.590000px;}
.y50{bottom:512.430000px;}
.y58{bottom:514.950000px;}
.y23{bottom:520.350000px;}
.y9e{bottom:525.750000px;}
.y4f{bottom:536.190000px;}
.yb5{bottom:536.550000px;}
.y57{bottom:538.710000px;}
.y22{bottom:544.110000px;}
.y9d{bottom:550.230000px;}
.y4e{bottom:559.950000px;}
.yb4{bottom:560.310000px;}
.y56{bottom:562.470000px;}
.y21{bottom:567.870000px;}
.y9b{bottom:578.340000px;}
.y4d{bottom:583.740000px;}
.yb3{bottom:584.100000px;}
.y55{bottom:586.620000px;}
.y20{bottom:592.020000px;}
.y4c{bottom:607.860000px;}
.y54{bottom:610.380000px;}
.y9a{bottom:611.820000px;}
.y1f{bottom:615.780000px;}
.yb2{bottom:631.260000px;}
.y4b{bottom:631.620000px;}
.y53{bottom:634.140000px;}
.y1e{bottom:639.540000px;}
.y97{bottom:639.900000px;}
.y4a{bottom:655.380000px;}
.y52{bottom:657.900000px;}
.y1d{bottom:663.300000px;}
.y51{bottom:677.340000px;}
.y5d{bottom:677.520000px;}
.y49{bottom:679.140000px;}
.y1c{bottom:687.060000px;}
.y94{bottom:689.940000px;}
.y48{bottom:702.930000px;}
.y1b{bottom:710.850000px;}
.y47{bottom:727.050000px;}
.y1a{bottom:734.970000px;}
.y92{bottom:738.210000px;}
.y46{bottom:750.810000px;}
.y19{bottom:758.730000px;}
.y45{bottom:774.570000px;}
.y91{bottom:777.810000px;}
.y18{bottom:782.490000px;}
.y44{bottom:798.330000px;}
.y8f{bottom:805.890000px;}
.y17{bottom:806.250000px;}
.yb1{bottom:821.730000px;}
.y43{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y8b{bottom:837.615000px;}
.y42{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y41{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y8a{bottom:893.055000px;}
.y40{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.y89{bottom:916.815000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:925.455000px;}
.y3e{bottom:941.295000px;}
.y11{bottom:949.215000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:973.005000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.yc6{bottom:1000.725000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1020.165000px;}
.y3a{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y36{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h18{height:23.760000px;}
.h5{height:27.000000px;}
.h12{height:27.360000px;}
.h17{height:27.396000px;}
.h11{height:30.996000px;}
.h16{height:32.760000px;}
.h19{height:35.640000px;}
.h13{height:38.880000px;}
.hd{height:44.032500px;}
.he{height:44.148375px;}
.h10{height:47.520000px;}
.h14{height:47.556000px;}
.h15{height:48.960000px;}
.h7{height:53.302500px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h1a{height:74.004654px;}
.h9{height:75.251250px;}
.h8{height:97.233750px;}
.hf{height:328.320000px;}
.hc{height:494.280000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w7{width:203.475000px;}
.w8{width:231.585000px;}
.w9{width:231.915000px;}
.w3{width:298.905000px;}
.w6{width:658.440000px;}
.w5{width:703.800000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x34{left:9.540000px;}
.x8{left:39.270000px;}
.x3f{left:46.839000px;}
.x3a{left:57.639000px;}
.x3e{left:59.760000px;}
.x3c{left:63.405000px;}
.x48{left:65.925000px;}
.x42{left:69.159000px;}
.x43{left:70.599000px;}
.x40{left:74.925000px;}
.x41{left:79.245000px;}
.x3b{left:81.039000px;}
.x19{left:84.810000px;}
.x45{left:87.159000px;}
.x46{left:89.319000px;}
.x47{left:90.399000px;}
.x18{left:91.830000px;}
.x5{left:95.796000px;}
.x15{left:97.595987px;}
.x39{left:104.436000px;}
.xa{left:110.555987px;}
.x44{left:115.995000px;}
.x26{left:117.000000px;}
.x35{left:118.155000px;}
.x32{left:119.700000px;}
.x49{left:127.835987px;}
.x1a{left:131.655000px;}
.x38{left:145.871987px;}
.x10{left:149.111987px;}
.x1f{left:150.990000px;}
.x3{left:190.874987px;}
.xb{left:199.514987px;}
.x14{left:202.034987px;}
.x31{left:220.710000px;}
.xe{left:231.554987px;}
.x33{left:244.155000px;}
.xd{left:276.224987px;}
.x36{left:283.785000px;}
.x20{left:286.170000px;}
.x6{left:290.634000px;}
.x25{left:308.700000px;}
.x11{left:317.984987px;}
.x30{left:319.035000px;}
.xf{left:322.664987px;}
.x1b{left:330.840000px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x21{left:350.175000px;}
.x16{left:375.989987px;}
.x2e{left:393.225000px;}
.x7{left:394.710000px;}
.x1c{left:402.045000px;}
.x2f{left:403.530000px;}
.x29{left:408.705000px;}
.x2d{left:424.185000px;}
.x22{left:426.420000px;}
.x2b{left:444.705000px;}
.x1d{left:466.050000px;}
.xc{left:473.219987px;}
.x2c{left:475.665000px;}
.x2a{left:477.540000px;}
.x23{left:485.355000px;}
.x9{left:498.780000px;}
.x28{left:511.920000px;}
.x1e{left:537.270000px;}
.x3d{left:540.930000px;}
.x24{left:561.600000px;}
.x27{left:597.675000px;}
.x12{left:712.364987px;}
.x37{left:742.244987px;}
.x17{left:775.724987px;}
.x1{left:797.684987px;}
.x13{left:799.484987px;}
@media print{
.v4{vertical-align:-47.520000pt;}
.v3{vertical-align:-41.600000pt;}
.v2{vertical-align:-38.773333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.340267pt;}
.lsb{letter-spacing:-0.212267pt;}
.lse{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls2{letter-spacing:3.200000pt;}
.ls3{letter-spacing:4.480000pt;}
.ls11{letter-spacing:13.600000pt;}
.lsf{letter-spacing:47.488000pt;}
.ls8{letter-spacing:72.726187pt;}
.wsd{word-spacing:-16.576000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.552000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws9{word-spacing:-11.021568pt;}
.ws6{word-spacing:-10.992640pt;}
.ws1{word-spacing:-10.560000pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:50.563200pt;}
.wsb{word-spacing:50.787200pt;}
.ws7{word-spacing:167.496533pt;}
.ws5{word-spacing:167.656533pt;}
.ws8{word-spacing:185.576533pt;}
.wsa{word-spacing:204.720213pt;}
._19{margin-left:-4.572160pt;}
._7{margin-left:-3.584000pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:1.981440pt;}
._4{width:3.133440pt;}
._5{width:4.564480pt;}
._12{width:5.629440pt;}
._6{width:6.563840pt;}
._15{width:7.657813pt;}
._e{width:8.785920pt;}
._d{width:9.886720pt;}
._c{width:11.392000pt;}
._8{width:13.120000pt;}
._9{width:14.796800pt;}
._a{width:17.392640pt;}
._b{width:18.398720pt;}
._14{width:19.356160pt;}
._13{width:20.426240pt;}
._f{width:21.598720pt;}
._11{width:23.055360pt;}
._10{width:24.156587pt;}
._16{width:25.343573pt;}
._1c{width:34.680320pt;}
._1b{width:35.793920pt;}
._1d{width:37.081600pt;}
._1f{width:42.736640pt;}
._1e{width:44.111360pt;}
._18{width:50.292907pt;}
._17{width:76.853333pt;}
._1a{width:79.749120pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:48.768000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:6.400000pt;}
.y96{bottom:6.720000pt;}
.y99{bottom:8.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y90{bottom:13.120000pt;}
.y9c{bottom:14.720000pt;}
.y88{bottom:15.168000pt;}
.y73{bottom:15.426667pt;}
.ya0{bottom:17.280000pt;}
.y93{bottom:20.160000pt;}
.y8e{bottom:22.400000pt;}
.y8c{bottom:27.520000pt;}
.y95{bottom:27.866667pt;}
.y98{bottom:29.120000pt;}
.y81{bottom:41.760000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y75{bottom:69.573333pt;}
.y82{bottom:75.360000pt;}
.y7b{bottom:79.840000pt;}
.y5c{bottom:95.712000pt;}
.y74{bottom:96.000000pt;}
.yb0{bottom:102.432000pt;}
.y34{bottom:102.752000pt;}
.y76{bottom:105.573333pt;}
.y83{bottom:111.360000pt;}
.y7c{bottom:115.840000pt;}
.yc5{bottom:117.152000pt;}
.yaf{bottom:123.552000pt;}
.y33{bottom:124.192000pt;}
.yc4{bottom:138.266667pt;}
.y77{bottom:141.533333pt;}
.yae{bottom:144.666667pt;}
.y32{bottom:145.306667pt;}
.y84{bottom:147.360000pt;}
.y7d{bottom:151.840000pt;}
.yc3{bottom:159.386667pt;}
.yad{bottom:165.786667pt;}
.y31{bottom:166.426667pt;}
.y78{bottom:177.533333pt;}
.yc2{bottom:180.546667pt;}
.y85{bottom:183.360000pt;}
.yac{bottom:186.946667pt;}
.y30{bottom:187.586667pt;}
.y7e{bottom:187.840000pt;}
.yc1{bottom:201.666667pt;}
.yab{bottom:208.066667pt;}
.y2f{bottom:208.706667pt;}
.y79{bottom:213.533333pt;}
.y86{bottom:219.333333pt;}
.yc0{bottom:222.786667pt;}
.y7f{bottom:223.813333pt;}
.y5e{bottom:225.626667pt;}
.yaa{bottom:229.186667pt;}
.y2e{bottom:229.826667pt;}
.y71{bottom:242.266667pt;}
.y5f{bottom:243.586667pt;}
.ybf{bottom:243.906667pt;}
.y7a{bottom:249.533333pt;}
.ya9{bottom:250.306667pt;}
.y2d{bottom:250.946667pt;}
.y6b{bottom:252.000000pt;}
.y6e{bottom:254.146667pt;}
.y87{bottom:255.333333pt;}
.y80{bottom:259.813333pt;}
.y60{bottom:261.573333pt;}
.y6d{bottom:262.400000pt;}
.ybe{bottom:265.026667pt;}
.y6f{bottom:266.373333pt;}
.ya8{bottom:271.746667pt;}
.y2c{bottom:272.066667pt;}
.y69{bottom:272.093333pt;}
.y61{bottom:279.520000pt;}
.ybd{bottom:286.173333pt;}
.ya7{bottom:292.893333pt;}
.y2b{bottom:293.533333pt;}
.y62{bottom:297.506667pt;}
.y70{bottom:301.946667pt;}
.ybc{bottom:307.613333pt;}
.ya6{bottom:314.013333pt;}
.y2a{bottom:314.653333pt;}
.y63{bottom:315.453333pt;}
.y6a{bottom:322.053333pt;}
.y72{bottom:326.013333pt;}
.ybb{bottom:328.733333pt;}
.y64{bottom:333.440000pt;}
.ya5{bottom:335.133333pt;}
.y29{bottom:335.773333pt;}
.yba{bottom:349.853333pt;}
.y65{bottom:351.386667pt;}
.ya4{bottom:356.253333pt;}
.y28{bottom:356.893333pt;}
.y66{bottom:369.373333pt;}
.yb9{bottom:370.973333pt;}
.ya3{bottom:377.373333pt;}
.y27{bottom:378.013333pt;}
.y67{bottom:387.333333pt;}
.yb8{bottom:392.093333pt;}
.y5b{bottom:394.013333pt;}
.ya2{bottom:398.533333pt;}
.y26{bottom:399.173333pt;}
.y68{bottom:405.306667pt;}
.y6c{bottom:411.906667pt;}
.yb7{bottom:413.253333pt;}
.y5a{bottom:415.173333pt;}
.ya1{bottom:419.653333pt;}
.y25{bottom:420.293333pt;}
.yb6{bottom:434.373333pt;}
.y9f{bottom:435.013333pt;}
.y59{bottom:436.293333pt;}
.y24{bottom:441.413333pt;}
.y50{bottom:455.493333pt;}
.y58{bottom:457.733333pt;}
.y23{bottom:462.533333pt;}
.y9e{bottom:467.333333pt;}
.y4f{bottom:476.613333pt;}
.yb5{bottom:476.933333pt;}
.y57{bottom:478.853333pt;}
.y22{bottom:483.653333pt;}
.y9d{bottom:489.093333pt;}
.y4e{bottom:497.733333pt;}
.yb4{bottom:498.053333pt;}
.y56{bottom:499.973333pt;}
.y21{bottom:504.773333pt;}
.y9b{bottom:514.080000pt;}
.y4d{bottom:518.880000pt;}
.yb3{bottom:519.200000pt;}
.y55{bottom:521.440000pt;}
.y20{bottom:526.240000pt;}
.y4c{bottom:540.320000pt;}
.y54{bottom:542.560000pt;}
.y9a{bottom:543.840000pt;}
.y1f{bottom:547.360000pt;}
.yb2{bottom:561.120000pt;}
.y4b{bottom:561.440000pt;}
.y53{bottom:563.680000pt;}
.y1e{bottom:568.480000pt;}
.y97{bottom:568.800000pt;}
.y4a{bottom:582.560000pt;}
.y52{bottom:584.800000pt;}
.y1d{bottom:589.600000pt;}
.y51{bottom:602.080000pt;}
.y5d{bottom:602.240000pt;}
.y49{bottom:603.680000pt;}
.y1c{bottom:610.720000pt;}
.y94{bottom:613.280000pt;}
.y48{bottom:624.826667pt;}
.y1b{bottom:631.866667pt;}
.y47{bottom:646.266667pt;}
.y1a{bottom:653.306667pt;}
.y92{bottom:656.186667pt;}
.y46{bottom:667.386667pt;}
.y19{bottom:674.426667pt;}
.y45{bottom:688.506667pt;}
.y91{bottom:691.386667pt;}
.y18{bottom:695.546667pt;}
.y44{bottom:709.626667pt;}
.y8f{bottom:716.346667pt;}
.y17{bottom:716.666667pt;}
.yb1{bottom:730.426667pt;}
.y43{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y8b{bottom:744.546667pt;}
.y42{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y41{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y8a{bottom:793.826667pt;}
.y40{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.y89{bottom:814.946667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:822.626667pt;}
.y3e{bottom:836.706667pt;}
.y11{bottom:843.746667pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.893333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.yc6{bottom:889.533333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:906.813333pt;}
.y3a{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y36{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h18{height:21.120000pt;}
.h5{height:24.000000pt;}
.h12{height:24.320000pt;}
.h17{height:24.352000pt;}
.h11{height:27.552000pt;}
.h16{height:29.120000pt;}
.h19{height:31.680000pt;}
.h13{height:34.560000pt;}
.hd{height:39.140000pt;}
.he{height:39.243000pt;}
.h10{height:42.240000pt;}
.h14{height:42.272000pt;}
.h15{height:43.520000pt;}
.h7{height:47.380000pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h1a{height:65.781915pt;}
.h9{height:66.890000pt;}
.h8{height:86.430000pt;}
.hf{height:291.840000pt;}
.hc{height:439.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w7{width:180.866667pt;}
.w8{width:205.853333pt;}
.w9{width:206.146667pt;}
.w3{width:265.693333pt;}
.w6{width:585.280000pt;}
.w5{width:625.600000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x34{left:8.480000pt;}
.x8{left:34.906667pt;}
.x3f{left:41.634667pt;}
.x3a{left:51.234667pt;}
.x3e{left:53.120000pt;}
.x3c{left:56.360000pt;}
.x48{left:58.600000pt;}
.x42{left:61.474667pt;}
.x43{left:62.754667pt;}
.x40{left:66.600000pt;}
.x41{left:70.440000pt;}
.x3b{left:72.034667pt;}
.x19{left:75.386667pt;}
.x45{left:77.474667pt;}
.x46{left:79.394667pt;}
.x47{left:80.354667pt;}
.x18{left:81.626667pt;}
.x5{left:85.152000pt;}
.x15{left:86.751988pt;}
.x39{left:92.832000pt;}
.xa{left:98.271988pt;}
.x44{left:103.106667pt;}
.x26{left:104.000000pt;}
.x35{left:105.026667pt;}
.x32{left:106.400000pt;}
.x49{left:113.631988pt;}
.x1a{left:117.026667pt;}
.x38{left:129.663988pt;}
.x10{left:132.543988pt;}
.x1f{left:134.213333pt;}
.x3{left:169.666655pt;}
.xb{left:177.346655pt;}
.x14{left:179.586655pt;}
.x31{left:196.186667pt;}
.xe{left:205.826655pt;}
.x33{left:217.026667pt;}
.xd{left:245.533322pt;}
.x36{left:252.253333pt;}
.x20{left:254.373333pt;}
.x6{left:258.341333pt;}
.x25{left:274.400000pt;}
.x11{left:282.653322pt;}
.x30{left:283.586667pt;}
.xf{left:286.813322pt;}
.x1b{left:294.080000pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x21{left:311.266667pt;}
.x16{left:334.213322pt;}
.x2e{left:349.533333pt;}
.x7{left:350.853333pt;}
.x1c{left:357.373333pt;}
.x2f{left:358.693333pt;}
.x29{left:363.293333pt;}
.x2d{left:377.053333pt;}
.x22{left:379.040000pt;}
.x2b{left:395.293333pt;}
.x1d{left:414.266667pt;}
.xc{left:420.639988pt;}
.x2c{left:422.813333pt;}
.x2a{left:424.480000pt;}
.x23{left:431.426667pt;}
.x9{left:443.360000pt;}
.x28{left:455.040000pt;}
.x1e{left:477.573333pt;}
.x3d{left:480.826667pt;}
.x24{left:499.200000pt;}
.x27{left:531.266667pt;}
.x12{left:633.213322pt;}
.x37{left:659.773322pt;}
.x17{left:689.533322pt;}
.x1{left:709.053322pt;}
.x13{left:710.653322pt;}
}




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