
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_236290c3168993f37be94527.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc41c1fa6ed05a4ccf88070b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e76dad56c6dfbfa6d9c5bd70.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_6795cd839769042b6bb6d9ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_dcba98120fcf84af1f7def0b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7d7fd3ed61ff9b406582fe2d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_77c8c2e9d88dc9875b2c4686.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_4b246eb2665d2483733935e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e680b5e74f31f568ebb132a9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.292200px;}
.ls29{letter-spacing:-0.272400px;}
.ls2b{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.174240px;}
.ls9{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.440000px;}
.ls17{letter-spacing:1.620000px;}
.ls20{letter-spacing:2.160000px;}
.ls23{letter-spacing:2.280000px;}
.ls12{letter-spacing:2.880000px;}
.ls1d{letter-spacing:3.600000px;}
.lsc{letter-spacing:4.320000px;}
.ls0{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.760000px;}
.lsf{letter-spacing:7.200000px;}
.ls22{letter-spacing:7.920000px;}
.ls1a{letter-spacing:9.360000px;}
.ls13{letter-spacing:10.080000px;}
.ls11{letter-spacing:11.520000px;}
.ls2f{letter-spacing:12.960000px;}
.ls34{letter-spacing:13.680000px;}
.ls8{letter-spacing:14.580000px;}
.ls31{letter-spacing:16.560000px;}
.ls27{letter-spacing:17.280000px;}
.lse{letter-spacing:18.720000px;}
.ls21{letter-spacing:19.440000px;}
.ls18{letter-spacing:20.160000px;}
.ls1{letter-spacing:20.340000px;}
.ls26{letter-spacing:20.880000px;}
.ls14{letter-spacing:21.600000px;}
.ls2e{letter-spacing:23.040000px;}
.ls33{letter-spacing:24.480000px;}
.ls24{letter-spacing:25.200000px;}
.ls1f{letter-spacing:26.640000px;}
.ls19{letter-spacing:28.080000px;}
.ls37{letter-spacing:29.520000px;}
.ls38{letter-spacing:30.240000px;}
.ls10{letter-spacing:30.960000px;}
.ls15{letter-spacing:32.400000px;}
.lsb{letter-spacing:33.120000px;}
.ls32{letter-spacing:33.840000px;}
.ls36{letter-spacing:36.000000px;}
.lsa{letter-spacing:36.720000px;}
.ls4{letter-spacing:38.880000px;}
.ls25{letter-spacing:43.380000px;}
.ls39{letter-spacing:43.920000px;}
.ls5{letter-spacing:52.560000px;}
.ls3{letter-spacing:72.000000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-21.396960px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.496000px;}
.wsa{word-spacing:-17.280000px;}
.ws7{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-2.784000px;}
._0{margin-left:-1.176000px;}
._1{width:1.008000px;}
._2{width:2.112000px;}
._1a{width:3.204000px;}
._4{width:4.260000px;}
._3{width:5.592000px;}
._8{width:6.984000px;}
._9{width:8.280000px;}
._18{width:9.864000px;}
._19{width:11.088000px;}
._1d{width:12.528000px;}
._1e{width:13.584000px;}
._23{width:14.688000px;}
._17{width:15.696000px;}
._16{width:16.848000px;}
._2f{width:17.987760px;}
._12{width:19.584000px;}
._11{width:20.688000px;}
._10{width:22.320000px;}
._1b{width:23.760000px;}
._2a{width:24.912000px;}
._15{width:25.944000px;}
._14{width:26.976000px;}
._a{width:28.080000px;}
._b{width:29.088000px;}
._c{width:30.096000px;}
._30{width:31.104000px;}
._d{width:32.112000px;}
._e{width:33.336000px;}
._f{width:34.416000px;}
._5{width:35.424000px;}
._6{width:36.576000px;}
._27{width:37.824000px;}
._7{width:39.024000px;}
._24{width:40.044000px;}
._35{width:41.160000px;}
._2b{width:42.192000px;}
._22{width:43.272000px;}
._25{width:44.640000px;}
._2e{width:46.032000px;}
._1c{width:47.904000px;}
._13{width:49.320000px;}
._28{width:51.288000px;}
._29{width:52.800000px;}
._3b{width:53.928000px;}
._36{width:57.168000px;}
._3c{width:58.416000px;}
._3e{width:60.096000px;}
._3d{width:61.224000px;}
._39{width:62.304000px;}
._38{width:63.480000px;}
._32{width:64.560000px;}
._31{width:65.952000px;}
._33{width:67.032000px;}
._34{width:68.592000px;}
._20{width:71.784000px;}
._21{width:73.320000px;}
._3a{width:78.624000px;}
._42{width:80.064000px;}
._43{width:81.480000px;}
._37{width:87.264000px;}
._2d{width:95.796000px;}
._2c{width:96.984000px;}
._40{width:130.752000px;}
._3f{width:131.904000px;}
._41{width:179.256000px;}
._26{width:315.444000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(204,0,102);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:48.276000px;}
.y6{bottom:68.616000px;}
.y5{bottom:92.376000px;}
.y9a{bottom:111.636000px;}
.y43{bottom:111.996000px;}
.y5a{bottom:114.336000px;}
.y92{bottom:115.416000px;}
.y59{bottom:119.556000px;}
.y91{bottom:121.356000px;}
.y99{bottom:128.916000px;}
.y42{bottom:129.816000px;}
.y58{bottom:132.876000px;}
.y31{bottom:135.036000px;}
.y64{bottom:136.476000px;}
.y57{bottom:138.096000px;}
.y90{bottom:138.636000px;}
.ya0{bottom:139.896000px;}
.y8f{bottom:143.856000px;}
.y98{bottom:146.016000px;}
.y41{bottom:147.456000px;}
.y56{bottom:150.870000px;}
.y97{bottom:151.230000px;}
.y40{bottom:152.670000px;}
.y30{bottom:158.790000px;}
.y8e{bottom:160.770000px;}
.y3f{bottom:165.450000px;}
.y96{bottom:167.250000px;}
.y55{bottom:167.970000px;}
.y95{bottom:173.190000px;}
.y2f{bottom:182.550000px;}
.y3e{bottom:182.730000px;}
.y54{bottom:185.610000px;}
.y53{bottom:190.830000px;}
.y94{bottom:191.550000px;}
.y3d{bottom:200.370000px;}
.y8d{bottom:201.450000px;}
.y63{bottom:203.250000px;}
.y52{bottom:203.610000px;}
.y3c{bottom:205.590000px;}
.y2e{bottom:206.490000px;}
.y51{bottom:221.250000px;}
.y3b{bottom:222.150000px;}
.y8c{bottom:225.210000px;}
.y50{bottom:226.470000px;}
.y62{bottom:227.190000px;}
.y2d{bottom:230.250000px;}
.y4f{bottom:239.070000px;}
.y8b{bottom:249.330000px;}
.y61{bottom:250.950000px;}
.y2c{bottom:254.010000px;}
.y4e{bottom:256.350000px;}
.y93{bottom:260.850000px;}
.y8a{bottom:273.090000px;}
.y4d{bottom:273.990000px;}
.y60{bottom:275.070000px;}
.y2b{bottom:277.815000px;}
.y4c{bottom:279.255000px;}
.y3a{bottom:284.655000px;}
.y4b{bottom:294.375000px;}
.y89{bottom:297.075000px;}
.y5f{bottom:300.135000px;}
.y2a{bottom:301.395000px;}
.y39{bottom:301.755000px;}
.y4a{bottom:314.535000px;}
.y49{bottom:319.755000px;}
.y87{bottom:320.835000px;}
.y5e{bottom:323.895000px;}
.y29{bottom:325.515000px;}
.y88{bottom:327.675000px;}
.y38{bottom:332.355000px;}
.y48{bottom:336.675000px;}
.y86{bottom:344.595000px;}
.y5d{bottom:347.655000px;}
.y28{bottom:349.275000px;}
.y85{bottom:368.355000px;}
.y5c{bottom:371.775000px;}
.y9f{bottom:372.675000px;}
.y27{bottom:373.035000px;}
.y84{bottom:392.295000px;}
.y9e{bottom:396.615000px;}
.y26{bottom:396.975000px;}
.y83{bottom:416.055000px;}
.y9d{bottom:420.375000px;}
.y25{bottom:420.735000px;}
.y82{bottom:439.815000px;}
.y9c{bottom:444.135000px;}
.y24{bottom:444.495000px;}
.y81{bottom:463.575000px;}
.y23{bottom:468.255000px;}
.y7f{bottom:487.515000px;}
.y22{bottom:492.195000px;}
.y80{bottom:494.355000px;}
.y7e{bottom:511.275000px;}
.y21{bottom:515.955000px;}
.y7d{bottom:535.035000px;}
.y20{bottom:539.715000px;}
.y7c{bottom:558.795000px;}
.y1f{bottom:563.505000px;}
.y5b{bottom:570.345000px;}
.y7b{bottom:582.765000px;}
.y1e{bottom:587.265000px;}
.y7a{bottom:606.525000px;}
.y1d{bottom:611.205000px;}
.y79{bottom:630.285000px;}
.y1c{bottom:634.605000px;}
.y37{bottom:634.965000px;}
.y78{bottom:654.045000px;}
.y1b{bottom:658.365000px;}
.y36{bottom:658.725000px;}
.y47{bottom:665.565000px;}
.y77{bottom:677.805000px;}
.y1a{bottom:682.485000px;}
.y76{bottom:701.745000px;}
.y19{bottom:706.425000px;}
.y75{bottom:725.505000px;}
.y18{bottom:730.185000px;}
.y46{bottom:737.025000px;}
.y74{bottom:749.265000px;}
.y17{bottom:753.945000px;}
.y73{bottom:773.025000px;}
.y16{bottom:777.705000px;}
.y72{bottom:796.965000px;}
.y15{bottom:801.645000px;}
.y71{bottom:820.725000px;}
.y14{bottom:825.405000px;}
.y70{bottom:844.485000px;}
.y13{bottom:849.210000px;}
.y6f{bottom:868.290000px;}
.y12{bottom:872.970000px;}
.y6e{bottom:892.230000px;}
.y11{bottom:896.910000px;}
.y6d{bottom:916.350000px;}
.y10{bottom:920.670000px;}
.y6c{bottom:941.370000px;}
.yf{bottom:944.430000px;}
.y6b{bottom:965.130000px;}
.ye{bottom:968.190000px;}
.y6a{bottom:988.890000px;}
.yd{bottom:991.770000px;}
.y35{bottom:992.130000px;}
.y45{bottom:998.970000px;}
.y69{bottom:1013.010000px;}
.yc{bottom:1015.890000px;}
.y9b{bottom:1022.730000px;}
.y68{bottom:1038.030000px;}
.yb{bottom:1039.650000px;}
.y67{bottom:1061.970000px;}
.ya{bottom:1063.050000px;}
.y34{bottom:1063.410000px;}
.y66{bottom:1085.730000px;}
.y9{bottom:1086.810000px;}
.y33{bottom:1087.170000px;}
.y65{bottom:1109.850000px;}
.y8{bottom:1110.750000px;}
.y32{bottom:1111.110000px;}
.y44{bottom:1117.950000px;}
.y4{bottom:1131.660000px;}
.y3{bottom:1152.360000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1194.300000px;}
.hf{height:38.158594px;}
.ha{height:38.671172px;}
.he{height:41.535703px;}
.h9{height:47.344922px;}
.h8{height:50.484375px;}
.h6{height:52.628906px;}
.hc{height:58.651172px;}
.hb{height:59.439023px;}
.hd{height:62.261719px;}
.h4{height:63.673594px;}
.h2{height:65.884219px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.795987px;}
.x12{left:100.655987px;}
.x11{left:101.915987px;}
.x28{left:105.515987px;}
.xb{left:108.215987px;}
.x2e{left:110.555987px;}
.x5{left:126.215987px;}
.x33{left:127.835987px;}
.x32{left:138.275987px;}
.xa{left:148.895987px;}
.x1d{left:155.549973px;}
.x1e{left:162.929987px;}
.x26{left:176.609987px;}
.x2{left:185.249987px;}
.x22{left:199.109973px;}
.x23{left:211.349987px;}
.x8{left:236.009987px;}
.x31{left:254.549987px;}
.x7{left:266.069987px;}
.x9{left:311.834987px;}
.x2c{left:323.174973px;}
.x2a{left:332.354973px;}
.x2d{left:337.574987px;}
.x13{left:341.174973px;}
.x2b{left:344.594987px;}
.x14{left:350.714987px;}
.x27{left:358.994987px;}
.x1f{left:365.834973px;}
.xc{left:370.694987px;}
.x20{left:371.954987px;}
.x6{left:381.854987px;}
.x4{left:410.654987px;}
.x29{left:411.734987px;}
.x21{left:413.174987px;}
.x1b{left:414.614973px;}
.x1c{left:424.334987px;}
.x15{left:441.254973px;}
.x16{left:450.794987px;}
.x3{left:462.494987px;}
.x17{left:538.124973px;}
.x18{left:547.664987px;}
.xf{left:568.724973px;}
.x10{left:585.284987px;}
.xd{left:597.704973px;}
.xe{left:606.344987px;}
.x19{left:686.624973px;}
.x2f{left:691.529973px;}
.x1a{left:692.789987px;}
.x24{left:707.909973px;}
.x30{left:709.349987px;}
.x25{left:726.089987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.259733pt;}
.ls29{letter-spacing:-0.242133pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.154880pt;}
.ls9{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.640000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.440000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls23{letter-spacing:2.026667pt;}
.ls12{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.200000pt;}
.lsc{letter-spacing:3.840000pt;}
.ls0{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:5.120000pt;}
.lsf{letter-spacing:6.400000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:8.320000pt;}
.ls13{letter-spacing:8.960000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls2f{letter-spacing:11.520000pt;}
.ls34{letter-spacing:12.160000pt;}
.ls8{letter-spacing:12.960000pt;}
.ls31{letter-spacing:14.720000pt;}
.ls27{letter-spacing:15.360000pt;}
.lse{letter-spacing:16.640000pt;}
.ls21{letter-spacing:17.280000pt;}
.ls18{letter-spacing:17.920000pt;}
.ls1{letter-spacing:18.080000pt;}
.ls26{letter-spacing:18.560000pt;}
.ls14{letter-spacing:19.200000pt;}
.ls2e{letter-spacing:20.480000pt;}
.ls33{letter-spacing:21.760000pt;}
.ls24{letter-spacing:22.400000pt;}
.ls1f{letter-spacing:23.680000pt;}
.ls19{letter-spacing:24.960000pt;}
.ls37{letter-spacing:26.240000pt;}
.ls38{letter-spacing:26.880000pt;}
.ls10{letter-spacing:27.520000pt;}
.ls15{letter-spacing:28.800000pt;}
.lsb{letter-spacing:29.440000pt;}
.ls32{letter-spacing:30.080000pt;}
.ls36{letter-spacing:32.000000pt;}
.lsa{letter-spacing:32.640000pt;}
.ls4{letter-spacing:34.560000pt;}
.ls25{letter-spacing:38.560000pt;}
.ls39{letter-spacing:39.040000pt;}
.ls5{letter-spacing:46.720000pt;}
.ls3{letter-spacing:64.000000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-19.019520pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.552000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-2.474667pt;}
._0{margin-left:-1.045333pt;}
._1{width:0.896000pt;}
._2{width:1.877333pt;}
._1a{width:2.848000pt;}
._4{width:3.786667pt;}
._3{width:4.970667pt;}
._8{width:6.208000pt;}
._9{width:7.360000pt;}
._18{width:8.768000pt;}
._19{width:9.856000pt;}
._1d{width:11.136000pt;}
._1e{width:12.074667pt;}
._23{width:13.056000pt;}
._17{width:13.952000pt;}
._16{width:14.976000pt;}
._2f{width:15.989120pt;}
._12{width:17.408000pt;}
._11{width:18.389333pt;}
._10{width:19.840000pt;}
._1b{width:21.120000pt;}
._2a{width:22.144000pt;}
._15{width:23.061333pt;}
._14{width:23.978667pt;}
._a{width:24.960000pt;}
._b{width:25.856000pt;}
._c{width:26.752000pt;}
._30{width:27.648000pt;}
._d{width:28.544000pt;}
._e{width:29.632000pt;}
._f{width:30.592000pt;}
._5{width:31.488000pt;}
._6{width:32.512000pt;}
._27{width:33.621333pt;}
._7{width:34.688000pt;}
._24{width:35.594667pt;}
._35{width:36.586667pt;}
._2b{width:37.504000pt;}
._22{width:38.464000pt;}
._25{width:39.680000pt;}
._2e{width:40.917333pt;}
._1c{width:42.581333pt;}
._13{width:43.840000pt;}
._28{width:45.589333pt;}
._29{width:46.933333pt;}
._3b{width:47.936000pt;}
._36{width:50.816000pt;}
._3c{width:51.925333pt;}
._3e{width:53.418667pt;}
._3d{width:54.421333pt;}
._39{width:55.381333pt;}
._38{width:56.426667pt;}
._32{width:57.386667pt;}
._31{width:58.624000pt;}
._33{width:59.584000pt;}
._34{width:60.970667pt;}
._20{width:63.808000pt;}
._21{width:65.173333pt;}
._3a{width:69.888000pt;}
._42{width:71.168000pt;}
._43{width:72.426667pt;}
._37{width:77.568000pt;}
._2d{width:85.152000pt;}
._2c{width:86.208000pt;}
._40{width:116.224000pt;}
._3f{width:117.248000pt;}
._41{width:159.338667pt;}
._26{width:280.394667pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:42.912000pt;}
.y6{bottom:60.992000pt;}
.y5{bottom:82.112000pt;}
.y9a{bottom:99.232000pt;}
.y43{bottom:99.552000pt;}
.y5a{bottom:101.632000pt;}
.y92{bottom:102.592000pt;}
.y59{bottom:106.272000pt;}
.y91{bottom:107.872000pt;}
.y99{bottom:114.592000pt;}
.y42{bottom:115.392000pt;}
.y58{bottom:118.112000pt;}
.y31{bottom:120.032000pt;}
.y64{bottom:121.312000pt;}
.y57{bottom:122.752000pt;}
.y90{bottom:123.232000pt;}
.ya0{bottom:124.352000pt;}
.y8f{bottom:127.872000pt;}
.y98{bottom:129.792000pt;}
.y41{bottom:131.072000pt;}
.y56{bottom:134.106667pt;}
.y97{bottom:134.426667pt;}
.y40{bottom:135.706667pt;}
.y30{bottom:141.146667pt;}
.y8e{bottom:142.906667pt;}
.y3f{bottom:147.066667pt;}
.y96{bottom:148.666667pt;}
.y55{bottom:149.306667pt;}
.y95{bottom:153.946667pt;}
.y2f{bottom:162.266667pt;}
.y3e{bottom:162.426667pt;}
.y54{bottom:164.986667pt;}
.y53{bottom:169.626667pt;}
.y94{bottom:170.266667pt;}
.y3d{bottom:178.106667pt;}
.y8d{bottom:179.066667pt;}
.y63{bottom:180.666667pt;}
.y52{bottom:180.986667pt;}
.y3c{bottom:182.746667pt;}
.y2e{bottom:183.546667pt;}
.y51{bottom:196.666667pt;}
.y3b{bottom:197.466667pt;}
.y8c{bottom:200.186667pt;}
.y50{bottom:201.306667pt;}
.y62{bottom:201.946667pt;}
.y2d{bottom:204.666667pt;}
.y4f{bottom:212.506667pt;}
.y8b{bottom:221.626667pt;}
.y61{bottom:223.066667pt;}
.y2c{bottom:225.786667pt;}
.y4e{bottom:227.866667pt;}
.y93{bottom:231.866667pt;}
.y8a{bottom:242.746667pt;}
.y4d{bottom:243.546667pt;}
.y60{bottom:244.506667pt;}
.y2b{bottom:246.946667pt;}
.y4c{bottom:248.226667pt;}
.y3a{bottom:253.026667pt;}
.y4b{bottom:261.666667pt;}
.y89{bottom:264.066667pt;}
.y5f{bottom:266.786667pt;}
.y2a{bottom:267.906667pt;}
.y39{bottom:268.226667pt;}
.y4a{bottom:279.586667pt;}
.y49{bottom:284.226667pt;}
.y87{bottom:285.186667pt;}
.y5e{bottom:287.906667pt;}
.y29{bottom:289.346667pt;}
.y88{bottom:291.266667pt;}
.y38{bottom:295.426667pt;}
.y48{bottom:299.266667pt;}
.y86{bottom:306.306667pt;}
.y5d{bottom:309.026667pt;}
.y28{bottom:310.466667pt;}
.y85{bottom:327.426667pt;}
.y5c{bottom:330.466667pt;}
.y9f{bottom:331.266667pt;}
.y27{bottom:331.586667pt;}
.y84{bottom:348.706667pt;}
.y9e{bottom:352.546667pt;}
.y26{bottom:352.866667pt;}
.y83{bottom:369.826667pt;}
.y9d{bottom:373.666667pt;}
.y25{bottom:373.986667pt;}
.y82{bottom:390.946667pt;}
.y9c{bottom:394.786667pt;}
.y24{bottom:395.106667pt;}
.y81{bottom:412.066667pt;}
.y23{bottom:416.226667pt;}
.y7f{bottom:433.346667pt;}
.y22{bottom:437.506667pt;}
.y80{bottom:439.426667pt;}
.y7e{bottom:454.466667pt;}
.y21{bottom:458.626667pt;}
.y7d{bottom:475.586667pt;}
.y20{bottom:479.746667pt;}
.y7c{bottom:496.706667pt;}
.y1f{bottom:500.893333pt;}
.y5b{bottom:506.973333pt;}
.y7b{bottom:518.013333pt;}
.y1e{bottom:522.013333pt;}
.y7a{bottom:539.133333pt;}
.y1d{bottom:543.293333pt;}
.y79{bottom:560.253333pt;}
.y1c{bottom:564.093333pt;}
.y37{bottom:564.413333pt;}
.y78{bottom:581.373333pt;}
.y1b{bottom:585.213333pt;}
.y36{bottom:585.533333pt;}
.y47{bottom:591.613333pt;}
.y77{bottom:602.493333pt;}
.y1a{bottom:606.653333pt;}
.y76{bottom:623.773333pt;}
.y19{bottom:627.933333pt;}
.y75{bottom:644.893333pt;}
.y18{bottom:649.053333pt;}
.y46{bottom:655.133333pt;}
.y74{bottom:666.013333pt;}
.y17{bottom:670.173333pt;}
.y73{bottom:687.133333pt;}
.y16{bottom:691.293333pt;}
.y72{bottom:708.413333pt;}
.y15{bottom:712.573333pt;}
.y71{bottom:729.533333pt;}
.y14{bottom:733.693333pt;}
.y70{bottom:750.653333pt;}
.y13{bottom:754.853333pt;}
.y6f{bottom:771.813333pt;}
.y12{bottom:775.973333pt;}
.y6e{bottom:793.093333pt;}
.y11{bottom:797.253333pt;}
.y6d{bottom:814.533333pt;}
.y10{bottom:818.373333pt;}
.y6c{bottom:836.773333pt;}
.yf{bottom:839.493333pt;}
.y6b{bottom:857.893333pt;}
.ye{bottom:860.613333pt;}
.y6a{bottom:879.013333pt;}
.yd{bottom:881.573333pt;}
.y35{bottom:881.893333pt;}
.y45{bottom:887.973333pt;}
.y69{bottom:900.453333pt;}
.yc{bottom:903.013333pt;}
.y9b{bottom:909.093333pt;}
.y68{bottom:922.693333pt;}
.yb{bottom:924.133333pt;}
.y67{bottom:943.973333pt;}
.ya{bottom:944.933333pt;}
.y34{bottom:945.253333pt;}
.y66{bottom:965.093333pt;}
.y9{bottom:966.053333pt;}
.y33{bottom:966.373333pt;}
.y65{bottom:986.533333pt;}
.y8{bottom:987.333333pt;}
.y32{bottom:987.653333pt;}
.y44{bottom:993.733333pt;}
.y4{bottom:1005.920000pt;}
.y3{bottom:1024.320000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1061.600000pt;}
.hf{height:33.918750pt;}
.ha{height:34.374375pt;}
.he{height:36.920625pt;}
.h9{height:42.084375pt;}
.h8{height:44.875000pt;}
.h6{height:46.781250pt;}
.hc{height:52.134375pt;}
.hb{height:52.834688pt;}
.hd{height:55.343750pt;}
.h4{height:56.598750pt;}
.h2{height:58.563750pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.151988pt;}
.x12{left:89.471988pt;}
.x11{left:90.591988pt;}
.x28{left:93.791988pt;}
.xb{left:96.191988pt;}
.x2e{left:98.271988pt;}
.x5{left:112.191988pt;}
.x33{left:113.631988pt;}
.x32{left:122.911988pt;}
.xa{left:132.351988pt;}
.x1d{left:138.266643pt;}
.x1e{left:144.826655pt;}
.x26{left:156.986655pt;}
.x2{left:164.666655pt;}
.x22{left:176.986643pt;}
.x23{left:187.866655pt;}
.x8{left:209.786655pt;}
.x31{left:226.266655pt;}
.x7{left:236.506655pt;}
.x9{left:277.186655pt;}
.x2c{left:287.266643pt;}
.x2a{left:295.426643pt;}
.x2d{left:300.066655pt;}
.x13{left:303.266643pt;}
.x2b{left:306.306655pt;}
.x14{left:311.746655pt;}
.x27{left:319.106655pt;}
.x1f{left:325.186643pt;}
.xc{left:329.506655pt;}
.x20{left:330.626655pt;}
.x6{left:339.426655pt;}
.x4{left:365.026655pt;}
.x29{left:365.986655pt;}
.x21{left:367.266655pt;}
.x1b{left:368.546643pt;}
.x1c{left:377.186655pt;}
.x15{left:392.226643pt;}
.x16{left:400.706655pt;}
.x3{left:411.106655pt;}
.x17{left:478.333310pt;}
.x18{left:486.813322pt;}
.xf{left:505.533310pt;}
.x10{left:520.253322pt;}
.xd{left:531.293310pt;}
.xe{left:538.973322pt;}
.x19{left:610.333310pt;}
.x2f{left:614.693310pt;}
.x1a{left:615.813322pt;}
.x24{left:629.253310pt;}
.x30{left:630.533322pt;}
.x25{left:645.413322pt;}
}




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