
    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_cbf65ec9e58e64e07af7734c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_ebd89cf6288285189429a7a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.220215;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_d099aebfd8b715ffaba7ee17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.220215;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_65b94233c9adda8e101e742b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_ef919ac72591e8b5c2ea1ee1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_50df303ef28f7623ca1ec9a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.368400px;}
.ls17{letter-spacing:-0.351600px;}
.lse{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.175200px;}
.ls16{letter-spacing:-0.169800px;}
.ls7{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.030960px;}
.lsc{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.382800px;}
.lsd{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.459360px;}
.ls6{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.567600px;}
.ls0{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.707040px;}
.ls4{letter-spacing:0.936000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.936000px;}
.wsa{word-spacing:-25.632000px;}
.wsd{word-spacing:-25.560000px;}
.wsb{word-spacing:-25.344000px;}
.wsc{word-spacing:-25.272000px;}
.ws3{word-spacing:-25.128000px;}
.wsf{word-spacing:-25.056000px;}
.ws7{word-spacing:-24.912000px;}
.ws6{word-spacing:-24.840000px;}
.ws0{word-spacing:-24.624000px;}
.ws5{word-spacing:-24.480000px;}
.ws11{word-spacing:-23.316480px;}
.ws10{word-spacing:-22.948080px;}
.ws8{word-spacing:-21.418320px;}
.ws2{word-spacing:-19.483920px;}
.ws4{word-spacing:-19.452960px;}
.wse{word-spacing:-15.226440px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1.164720px;}
._0{width:1.025760px;}
._2{width:2.273520px;}
._7{width:3.575760px;}
._a{width:5.557680px;}
._3{width:6.752880px;}
._14{width:8.061360px;}
._4{width:9.621360px;}
._1a{width:10.622160px;}
._8{width:11.653200px;}
._9{width:12.717840px;}
._19{width:13.897440px;}
._d{width:14.933760px;}
._5{width:16.254720px;}
._6{width:17.420400px;}
._10{width:19.095600px;}
._15{width:20.160000px;}
._16{width:21.240000px;}
._18{width:23.040000px;}
._24{width:24.336000px;}
._2f{width:26.346960px;}
._13{width:27.360000px;}
._1b{width:28.405920px;}
._b{width:29.511600px;}
._c{width:30.527520px;}
._17{width:31.548720px;}
._f{width:32.832000px;}
._25{width:33.912000px;}
._e{width:35.136000px;}
._1d{width:36.198240px;}
._1c{width:37.224000px;}
._26{width:38.736000px;}
._21{width:40.248000px;}
._22{width:41.328000px;}
._33{width:43.381440px;}
._2a{width:44.856000px;}
._34{width:46.380720px;}
._2b{width:47.592000px;}
._2c{width:48.666240px;}
._35{width:50.412720px;}
._28{width:51.624000px;}
._29{width:52.920000px;}
._38{width:54.000000px;}
._11{width:55.296000px;}
._12{width:56.664000px;}
._36{width:57.744000px;}
._30{width:58.968000px;}
._31{width:60.096000px;}
._1e{width:61.632000px;}
._1f{width:63.072000px;}
._27{width:64.812720px;}
._20{width:66.456000px;}
._32{width:79.212720px;}
._2d{width:82.296000px;}
._2e{width:83.436000px;}
._37{width:84.618240px;}
._39{width:85.846080px;}
._23{width:111.396720px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.636000px;}
.y1{bottom:77.796000px;}
.y5f{bottom:109.296000px;}
.y86{bottom:110.196000px;}
.y85{bottom:115.416000px;}
.y7c{bottom:115.956000px;}
.y2b{bottom:120.996000px;}
.yc8{bottom:122.796000px;}
.yb4{bottom:124.056000px;}
.y5e{bottom:127.476000px;}
.y84{bottom:128.376000px;}
.ybf{bottom:129.096000px;}
.ye1{bottom:131.796000px;}
.y83{bottom:133.596000px;}
.y7b{bottom:137.736000px;}
.y2a{bottom:142.776000px;}
.yc7{bottom:144.756000px;}
.y5d{bottom:145.656000px;}
.yb3{bottom:145.836000px;}
.y82{bottom:148.176000px;}
.ybd{bottom:150.870000px;}
.ye0{bottom:151.950000px;}
.y7a{bottom:159.690000px;}
.y5c{bottom:164.010000px;}
.y29{bottom:164.730000px;}
.ybc{bottom:165.450000px;}
.yc6{bottom:166.530000px;}
.yb2{bottom:167.790000px;}
.y5b{bottom:169.230000px;}
.y98{bottom:181.470000px;}
.y5a{bottom:182.190000px;}
.y28{bottom:186.510000px;}
.ydf{bottom:187.050000px;}
.y81{bottom:188.490000px;}
.yb1{bottom:189.750000px;}
.y79{bottom:196.590000px;}
.y59{bottom:200.370000px;}
.y97{bottom:203.430000px;}
.yde{bottom:207.030000px;}
.y27{bottom:208.470000px;}
.y80{bottom:210.270000px;}
.yb0{bottom:211.530000px;}
.y78{bottom:218.370000px;}
.y58{bottom:218.730000px;}
.y57{bottom:223.950000px;}
.y96{bottom:225.210000px;}
.ydd{bottom:227.010000px;}
.y26{bottom:230.250000px;}
.yc5{bottom:232.230000px;}
.yaf{bottom:233.490000px;}
.y56{bottom:236.910000px;}
.y77{bottom:240.330000px;}
.y7f{bottom:247.170000px;}
.y25{bottom:252.210000px;}
.yc4{bottom:254.010000px;}
.y55{bottom:255.090000px;}
.yae{bottom:255.270000px;}
.y76{bottom:262.110000px;}
.y95{bottom:269.130000px;}
.y54{bottom:273.315000px;}
.y24{bottom:274.035000px;}
.yc3{bottom:276.015000px;}
.yad{bottom:277.275000px;}
.ydc{bottom:282.135000px;}
.y75{bottom:284.115000px;}
.y94{bottom:290.955000px;}
.y53{bottom:291.675000px;}
.y23{bottom:295.995000px;}
.yac{bottom:299.055000px;}
.y74{bottom:305.895000px;}
.y52{bottom:309.855000px;}
.y93{bottom:312.915000px;}
.ydb{bottom:317.235000px;}
.y22{bottom:317.955000px;}
.yab{bottom:321.015000px;}
.y73{bottom:327.855000px;}
.y51{bottom:328.035000px;}
.y50{bottom:333.255000px;}
.ybe{bottom:333.795000px;}
.y92{bottom:334.695000px;}
.yda{bottom:337.395000px;}
.y21{bottom:339.735000px;}
.yaa{bottom:342.795000px;}
.y4f{bottom:347.835000px;}
.y72{bottom:349.635000px;}
.y91{bottom:356.655000px;}
.yd9{bottom:357.375000px;}
.y20{bottom:361.695000px;}
.ya9{bottom:364.755000px;}
.y71{bottom:371.595000px;}
.y90{bottom:378.435000px;}
.y1f{bottom:383.475000px;}
.ya8{bottom:386.535000px;}
.yd8{bottom:392.475000px;}
.y4d{bottom:393.555000px;}
.y4e{bottom:399.495000px;}
.y8f{bottom:400.395000px;}
.y1e{bottom:405.435000px;}
.ya7{bottom:408.495000px;}
.yd7{bottom:412.455000px;}
.y4c{bottom:415.335000px;}
.y8e{bottom:422.175000px;}
.y1d{bottom:427.215000px;}
.ya6{bottom:430.275000px;}
.y4b{bottom:437.295000px;}
.y8d{bottom:444.135000px;}
.yd3{bottom:445.395000px;}
.yd6{bottom:447.555000px;}
.y1c{bottom:449.175000px;}
.ya5{bottom:452.235000px;}
.y4a{bottom:459.075000px;}
.y49{bottom:465.015000px;}
.ybb{bottom:465.915000px;}
.yd2{bottom:467.175000px;}
.yd5{bottom:467.535000px;}
.y1b{bottom:470.955000px;}
.ya4{bottom:474.015000px;}
.y48{bottom:481.035000px;}
.yba{bottom:487.875000px;}
.yd1{bottom:489.135000px;}
.ya3{bottom:495.975000px;}
.y47{bottom:502.815000px;}
.yb9{bottom:509.655000px;}
.y1a{bottom:510.915000px;}
.y70{bottom:517.935000px;}
.y46{bottom:524.775000px;}
.yb8{bottom:531.615000px;}
.yd0{bottom:532.875000px;}
.y6f{bottom:539.715000px;}
.y45{bottom:546.555000px;}
.y19{bottom:549.975000px;}
.yb7{bottom:553.395000px;}
.ycf{bottom:554.655000px;}
.y6e{bottom:561.705000px;}
.y44{bottom:568.545000px;}
.yb6{bottom:575.385000px;}
.yce{bottom:576.645000px;}
.y6d{bottom:583.485000px;}
.y18{bottom:586.005000px;}
.yfa{bottom:588.345000px;}
.y43{bottom:590.325000px;}
.yc2{bottom:597.345000px;}
.ya2{bottom:598.425000px;}
.y6c{bottom:605.445000px;}
.yf9{bottom:606.525000px;}
.y42{bottom:612.285000px;}
.ya1{bottom:620.385000px;}
.y17{bottom:622.005000px;}
.yf8{bottom:624.885000px;}
.y6b{bottom:627.225000px;}
.y41{bottom:634.065000px;}
.ya0{bottom:642.345000px;}
.y16{bottom:642.885000px;}
.yf7{bottom:643.065000px;}
.y6a{bottom:649.185000px;}
.yb5{bottom:655.125000px;}
.yf6{bottom:661.245000px;}
.y15{bottom:663.945000px;}
.y9f{bottom:664.125000px;}
.y40{bottom:670.965000px;}
.yf5{bottom:679.605000px;}
.y14{bottom:684.825000px;}
.y9e{bottom:686.085000px;}
.y3e{bottom:692.925000px;}
.yf4{bottom:697.785000px;}
.y3f{bottom:698.865000px;}
.y13{bottom:705.885000px;}
.y9d{bottom:707.865000px;}
.y3d{bottom:714.705000px;}
.yf3{bottom:715.965000px;}
.y12{bottom:726.765000px;}
.y9c{bottom:729.825000px;}
.yf2{bottom:734.145000px;}
.y3c{bottom:736.665000px;}
.y11{bottom:747.825000px;}
.y9b{bottom:751.605000px;}
.yf1{bottom:752.505000px;}
.y3b{bottom:758.445000px;}
.yf0{bottom:770.685000px;}
.y8c{bottom:773.565000px;}
.y3a{bottom:780.405000px;}
.y10{bottom:783.645000px;}
.y8b{bottom:795.345000px;}
.yc0{bottom:801.285000px;}
.y69{bottom:802.185000px;}
.yef{bottom:804.525000px;}
.yf{bottom:804.705000px;}
.y39{bottom:817.305000px;}
.y68{bottom:824.145000px;}
.yee{bottom:824.505000px;}
.ye{bottom:825.585000px;}
.y38{bottom:839.130000px;}
.y67{bottom:846.150000px;}
.yd{bottom:846.690000px;}
.ycd{bottom:854.250000px;}
.yed{bottom:859.650000px;}
.y37{bottom:861.090000px;}
.yc1{bottom:867.030000px;}
.yc{bottom:867.570000px;}
.y66{bottom:867.930000px;}
.ycc{bottom:876.030000px;}
.yec{bottom:879.630000px;}
.y36{bottom:882.870000px;}
.yb{bottom:888.630000px;}
.y65{bottom:889.890000px;}
.ycb{bottom:897.990000px;}
.y35{bottom:904.830000px;}
.ya{bottom:909.510000px;}
.y64{bottom:911.670000px;}
.yeb{bottom:914.730000px;}
.yca{bottom:919.770000px;}
.y34{bottom:926.610000px;}
.y63{bottom:933.630000px;}
.yea{bottom:934.710000px;}
.yc9{bottom:941.730000px;}
.y9{bottom:945.510000px;}
.y8a{bottom:948.570000px;}
.y62{bottom:955.410000px;}
.y33{bottom:963.510000px;}
.ye9{bottom:969.810000px;}
.y89{bottom:970.530000px;}
.y61{bottom:977.370000px;}
.y8{bottom:982.590000px;}
.y32{bottom:985.470000px;}
.ye8{bottom:989.790000px;}
.y88{bottom:992.310000px;}
.y31{bottom:1007.250000px;}
.y7{bottom:1007.970000px;}
.y7e{bottom:1013.190000px;}
.y60{bottom:1014.270000px;}
.ye7{bottom:1024.890000px;}
.y30{bottom:1029.210000px;}
.y6{bottom:1033.170000px;}
.y87{bottom:1036.050000px;}
.ye6{bottom:1045.050000px;}
.y2f{bottom:1050.990000px;}
.y9a{bottom:1058.010000px;}
.ye5{bottom:1065.030000px;}
.y2e{bottom:1072.950000px;}
.y5{bottom:1073.130000px;}
.y99{bottom:1079.790000px;}
.ye4{bottom:1085.010000px;}
.y2d{bottom:1094.910000px;}
.y7d{bottom:1100.850000px;}
.yd4{bottom:1101.750000px;}
.y4{bottom:1113.270000px;}
.y2c{bottom:1116.690000px;}
.ye3{bottom:1120.110000px;}
.y3{bottom:1138.680000px;}
.ye2{bottom:1140.300000px;}
.ha{height:26.616094px;}
.h9{height:38.898984px;}
.hb{height:40.909922px;}
.h2{height:45.345937px;}
.h8{height:48.263555px;}
.h5{height:59.789180px;}
.h4{height:60.577031px;}
.hc{height:66.272344px;}
.h6{height:72.035156px;}
.h3{height:72.984375px;}
.h7{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.x3{left:129.996000px;}
.x15{left:132.516000px;}
.x10{left:133.776000px;}
.x7{left:134.856000px;}
.x4{left:137.376000px;}
.x6{left:138.816000px;}
.xa{left:148.896000px;}
.x13{left:183.787500px;}
.x14{left:191.550000px;}
.xd{left:197.107500px;}
.xe{left:204.870000px;}
.x9{left:212.970000px;}
.x8{left:305.535000px;}
.xf{left:343.695000px;}
.x5{left:408.135000px;}
.x19{left:438.195000px;}
.x1{left:442.335000px;}
.x18{left:450.075000px;}
.x1a{left:484.252500px;}
.x1b{left:492.015000px;}
.x1c{left:516.682500px;}
.x1d{left:524.445000px;}
.x16{left:673.102500px;}
.x17{left:680.865000px;}
.xb{left:686.242500px;}
.xc{left:694.005000px;}
.x11{left:751.267500px;}
.x12{left:759.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.327467pt;}
.ls17{letter-spacing:-0.312533pt;}
.lse{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.155733pt;}
.ls16{letter-spacing:-0.150933pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.027520pt;}
.lsc{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.340267pt;}
.lsd{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.408320pt;}
.ls6{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.504533pt;}
.ls0{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.628480pt;}
.ls4{letter-spacing:0.832000pt;}
.ws1{word-spacing:-64.832000pt;}
.wsa{word-spacing:-22.784000pt;}
.wsd{word-spacing:-22.720000pt;}
.wsb{word-spacing:-22.528000pt;}
.wsc{word-spacing:-22.464000pt;}
.ws3{word-spacing:-22.336000pt;}
.wsf{word-spacing:-22.272000pt;}
.ws7{word-spacing:-22.144000pt;}
.ws6{word-spacing:-22.080000pt;}
.ws0{word-spacing:-21.888000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws11{word-spacing:-20.725760pt;}
.ws10{word-spacing:-20.398293pt;}
.ws8{word-spacing:-19.038507pt;}
.ws2{word-spacing:-17.319040pt;}
.ws4{word-spacing:-17.291520pt;}
.wse{word-spacing:-13.534613pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-1.035307pt;}
._0{width:0.911787pt;}
._2{width:2.020907pt;}
._7{width:3.178453pt;}
._a{width:4.940160pt;}
._3{width:6.002560pt;}
._14{width:7.165653pt;}
._4{width:8.552320pt;}
._1a{width:9.441920pt;}
._8{width:10.358400pt;}
._9{width:11.304747pt;}
._19{width:12.353280pt;}
._d{width:13.274453pt;}
._5{width:14.448640pt;}
._6{width:15.484800pt;}
._10{width:16.973867pt;}
._15{width:17.920000pt;}
._16{width:18.880000pt;}
._18{width:20.480000pt;}
._24{width:21.632000pt;}
._2f{width:23.419520pt;}
._13{width:24.320000pt;}
._1b{width:25.249707pt;}
._b{width:26.232533pt;}
._c{width:27.135573pt;}
._17{width:28.043307pt;}
._f{width:29.184000pt;}
._25{width:30.144000pt;}
._e{width:31.232000pt;}
._1d{width:32.176213pt;}
._1c{width:33.088000pt;}
._26{width:34.432000pt;}
._21{width:35.776000pt;}
._22{width:36.736000pt;}
._33{width:38.561280pt;}
._2a{width:39.872000pt;}
._34{width:41.227307pt;}
._2b{width:42.304000pt;}
._2c{width:43.258880pt;}
._35{width:44.811307pt;}
._28{width:45.888000pt;}
._29{width:47.040000pt;}
._38{width:48.000000pt;}
._11{width:49.152000pt;}
._12{width:50.368000pt;}
._36{width:51.328000pt;}
._30{width:52.416000pt;}
._31{width:53.418667pt;}
._1e{width:54.784000pt;}
._1f{width:56.064000pt;}
._27{width:57.611307pt;}
._20{width:59.072000pt;}
._32{width:70.411307pt;}
._2d{width:73.152000pt;}
._2e{width:74.165333pt;}
._37{width:75.216213pt;}
._39{width:76.307627pt;}
._23{width:99.019307pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.232000pt;}
.y1{bottom:69.152000pt;}
.y5f{bottom:97.152000pt;}
.y86{bottom:97.952000pt;}
.y85{bottom:102.592000pt;}
.y7c{bottom:103.072000pt;}
.y2b{bottom:107.552000pt;}
.yc8{bottom:109.152000pt;}
.yb4{bottom:110.272000pt;}
.y5e{bottom:113.312000pt;}
.y84{bottom:114.112000pt;}
.ybf{bottom:114.752000pt;}
.ye1{bottom:117.152000pt;}
.y83{bottom:118.752000pt;}
.y7b{bottom:122.432000pt;}
.y2a{bottom:126.912000pt;}
.yc7{bottom:128.672000pt;}
.y5d{bottom:129.472000pt;}
.yb3{bottom:129.632000pt;}
.y82{bottom:131.712000pt;}
.ybd{bottom:134.106667pt;}
.ye0{bottom:135.066667pt;}
.y7a{bottom:141.946667pt;}
.y5c{bottom:145.786667pt;}
.y29{bottom:146.426667pt;}
.ybc{bottom:147.066667pt;}
.yc6{bottom:148.026667pt;}
.yb2{bottom:149.146667pt;}
.y5b{bottom:150.426667pt;}
.y98{bottom:161.306667pt;}
.y5a{bottom:161.946667pt;}
.y28{bottom:165.786667pt;}
.ydf{bottom:166.266667pt;}
.y81{bottom:167.546667pt;}
.yb1{bottom:168.666667pt;}
.y79{bottom:174.746667pt;}
.y59{bottom:178.106667pt;}
.y97{bottom:180.826667pt;}
.yde{bottom:184.026667pt;}
.y27{bottom:185.306667pt;}
.y80{bottom:186.906667pt;}
.yb0{bottom:188.026667pt;}
.y78{bottom:194.106667pt;}
.y58{bottom:194.426667pt;}
.y57{bottom:199.066667pt;}
.y96{bottom:200.186667pt;}
.ydd{bottom:201.786667pt;}
.y26{bottom:204.666667pt;}
.yc5{bottom:206.426667pt;}
.yaf{bottom:207.546667pt;}
.y56{bottom:210.586667pt;}
.y77{bottom:213.626667pt;}
.y7f{bottom:219.706667pt;}
.y25{bottom:224.186667pt;}
.yc4{bottom:225.786667pt;}
.y55{bottom:226.746667pt;}
.yae{bottom:226.906667pt;}
.y76{bottom:232.986667pt;}
.y95{bottom:239.226667pt;}
.y54{bottom:242.946667pt;}
.y24{bottom:243.586667pt;}
.yc3{bottom:245.346667pt;}
.yad{bottom:246.466667pt;}
.ydc{bottom:250.786667pt;}
.y75{bottom:252.546667pt;}
.y94{bottom:258.626667pt;}
.y53{bottom:259.266667pt;}
.y23{bottom:263.106667pt;}
.yac{bottom:265.826667pt;}
.y74{bottom:271.906667pt;}
.y52{bottom:275.426667pt;}
.y93{bottom:278.146667pt;}
.ydb{bottom:281.986667pt;}
.y22{bottom:282.626667pt;}
.yab{bottom:285.346667pt;}
.y73{bottom:291.426667pt;}
.y51{bottom:291.586667pt;}
.y50{bottom:296.226667pt;}
.ybe{bottom:296.706667pt;}
.y92{bottom:297.506667pt;}
.yda{bottom:299.906667pt;}
.y21{bottom:301.986667pt;}
.yaa{bottom:304.706667pt;}
.y4f{bottom:309.186667pt;}
.y72{bottom:310.786667pt;}
.y91{bottom:317.026667pt;}
.yd9{bottom:317.666667pt;}
.y20{bottom:321.506667pt;}
.ya9{bottom:324.226667pt;}
.y71{bottom:330.306667pt;}
.y90{bottom:336.386667pt;}
.y1f{bottom:340.866667pt;}
.ya8{bottom:343.586667pt;}
.yd8{bottom:348.866667pt;}
.y4d{bottom:349.826667pt;}
.y4e{bottom:355.106667pt;}
.y8f{bottom:355.906667pt;}
.y1e{bottom:360.386667pt;}
.ya7{bottom:363.106667pt;}
.yd7{bottom:366.626667pt;}
.y4c{bottom:369.186667pt;}
.y8e{bottom:375.266667pt;}
.y1d{bottom:379.746667pt;}
.ya6{bottom:382.466667pt;}
.y4b{bottom:388.706667pt;}
.y8d{bottom:394.786667pt;}
.yd3{bottom:395.906667pt;}
.yd6{bottom:397.826667pt;}
.y1c{bottom:399.266667pt;}
.ya5{bottom:401.986667pt;}
.y4a{bottom:408.066667pt;}
.y49{bottom:413.346667pt;}
.ybb{bottom:414.146667pt;}
.yd2{bottom:415.266667pt;}
.yd5{bottom:415.586667pt;}
.y1b{bottom:418.626667pt;}
.ya4{bottom:421.346667pt;}
.y48{bottom:427.586667pt;}
.yba{bottom:433.666667pt;}
.yd1{bottom:434.786667pt;}
.ya3{bottom:440.866667pt;}
.y47{bottom:446.946667pt;}
.yb9{bottom:453.026667pt;}
.y1a{bottom:454.146667pt;}
.y70{bottom:460.386667pt;}
.y46{bottom:466.466667pt;}
.yb8{bottom:472.546667pt;}
.yd0{bottom:473.666667pt;}
.y6f{bottom:479.746667pt;}
.y45{bottom:485.826667pt;}
.y19{bottom:488.866667pt;}
.yb7{bottom:491.906667pt;}
.ycf{bottom:493.026667pt;}
.y6e{bottom:499.293333pt;}
.y44{bottom:505.373333pt;}
.yb6{bottom:511.453333pt;}
.yce{bottom:512.573333pt;}
.y6d{bottom:518.653333pt;}
.y18{bottom:520.893333pt;}
.yfa{bottom:522.973333pt;}
.y43{bottom:524.733333pt;}
.yc2{bottom:530.973333pt;}
.ya2{bottom:531.933333pt;}
.y6c{bottom:538.173333pt;}
.yf9{bottom:539.133333pt;}
.y42{bottom:544.253333pt;}
.ya1{bottom:551.453333pt;}
.y17{bottom:552.893333pt;}
.yf8{bottom:555.453333pt;}
.y6b{bottom:557.533333pt;}
.y41{bottom:563.613333pt;}
.ya0{bottom:570.973333pt;}
.y16{bottom:571.453333pt;}
.yf7{bottom:571.613333pt;}
.y6a{bottom:577.053333pt;}
.yb5{bottom:582.333333pt;}
.yf6{bottom:587.773333pt;}
.y15{bottom:590.173333pt;}
.y9f{bottom:590.333333pt;}
.y40{bottom:596.413333pt;}
.yf5{bottom:604.093333pt;}
.y14{bottom:608.733333pt;}
.y9e{bottom:609.853333pt;}
.y3e{bottom:615.933333pt;}
.yf4{bottom:620.253333pt;}
.y3f{bottom:621.213333pt;}
.y13{bottom:627.453333pt;}
.y9d{bottom:629.213333pt;}
.y3d{bottom:635.293333pt;}
.yf3{bottom:636.413333pt;}
.y12{bottom:646.013333pt;}
.y9c{bottom:648.733333pt;}
.yf2{bottom:652.573333pt;}
.y3c{bottom:654.813333pt;}
.y11{bottom:664.733333pt;}
.y9b{bottom:668.093333pt;}
.yf1{bottom:668.893333pt;}
.y3b{bottom:674.173333pt;}
.yf0{bottom:685.053333pt;}
.y8c{bottom:687.613333pt;}
.y3a{bottom:693.693333pt;}
.y10{bottom:696.573333pt;}
.y8b{bottom:706.973333pt;}
.yc0{bottom:712.253333pt;}
.y69{bottom:713.053333pt;}
.yef{bottom:715.133333pt;}
.yf{bottom:715.293333pt;}
.y39{bottom:726.493333pt;}
.y68{bottom:732.573333pt;}
.yee{bottom:732.893333pt;}
.ye{bottom:733.853333pt;}
.y38{bottom:745.893333pt;}
.y67{bottom:752.133333pt;}
.yd{bottom:752.613333pt;}
.ycd{bottom:759.333333pt;}
.yed{bottom:764.133333pt;}
.y37{bottom:765.413333pt;}
.yc1{bottom:770.693333pt;}
.yc{bottom:771.173333pt;}
.y66{bottom:771.493333pt;}
.ycc{bottom:778.693333pt;}
.yec{bottom:781.893333pt;}
.y36{bottom:784.773333pt;}
.yb{bottom:789.893333pt;}
.y65{bottom:791.013333pt;}
.ycb{bottom:798.213333pt;}
.y35{bottom:804.293333pt;}
.ya{bottom:808.453333pt;}
.y64{bottom:810.373333pt;}
.yeb{bottom:813.093333pt;}
.yca{bottom:817.573333pt;}
.y34{bottom:823.653333pt;}
.y63{bottom:829.893333pt;}
.yea{bottom:830.853333pt;}
.yc9{bottom:837.093333pt;}
.y9{bottom:840.453333pt;}
.y8a{bottom:843.173333pt;}
.y62{bottom:849.253333pt;}
.y33{bottom:856.453333pt;}
.ye9{bottom:862.053333pt;}
.y89{bottom:862.693333pt;}
.y61{bottom:868.773333pt;}
.y8{bottom:873.413333pt;}
.y32{bottom:875.973333pt;}
.ye8{bottom:879.813333pt;}
.y88{bottom:882.053333pt;}
.y31{bottom:895.333333pt;}
.y7{bottom:895.973333pt;}
.y7e{bottom:900.613333pt;}
.y60{bottom:901.573333pt;}
.ye7{bottom:911.013333pt;}
.y30{bottom:914.853333pt;}
.y6{bottom:918.373333pt;}
.y87{bottom:920.933333pt;}
.ye6{bottom:928.933333pt;}
.y2f{bottom:934.213333pt;}
.y9a{bottom:940.453333pt;}
.ye5{bottom:946.693333pt;}
.y2e{bottom:953.733333pt;}
.y5{bottom:953.893333pt;}
.y99{bottom:959.813333pt;}
.ye4{bottom:964.453333pt;}
.y2d{bottom:973.253333pt;}
.y7d{bottom:978.533333pt;}
.yd4{bottom:979.333333pt;}
.y4{bottom:989.573333pt;}
.y2c{bottom:992.613333pt;}
.ye3{bottom:995.653333pt;}
.y3{bottom:1012.160000pt;}
.ye2{bottom:1013.600000pt;}
.ha{height:23.658750pt;}
.h9{height:34.576875pt;}
.hb{height:36.364375pt;}
.h2{height:40.307500pt;}
.h8{height:42.900937pt;}
.h5{height:53.145938pt;}
.h4{height:53.846250pt;}
.hc{height:58.908750pt;}
.h6{height:64.031250pt;}
.h3{height:64.875000pt;}
.h7{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.x3{left:115.552000pt;}
.x15{left:117.792000pt;}
.x10{left:118.912000pt;}
.x7{left:119.872000pt;}
.x4{left:122.112000pt;}
.x6{left:123.392000pt;}
.xa{left:132.352000pt;}
.x13{left:163.366667pt;}
.x14{left:170.266667pt;}
.xd{left:175.206667pt;}
.xe{left:182.106667pt;}
.x9{left:189.306667pt;}
.x8{left:271.586667pt;}
.xf{left:305.506667pt;}
.x5{left:362.786667pt;}
.x19{left:389.506667pt;}
.x1{left:393.186667pt;}
.x18{left:400.066667pt;}
.x1a{left:430.446667pt;}
.x1b{left:437.346667pt;}
.x1c{left:459.273333pt;}
.x1d{left:466.173333pt;}
.x16{left:598.313333pt;}
.x17{left:605.213333pt;}
.xb{left:609.993333pt;}
.xc{left:616.893333pt;}
.x11{left:667.793333pt;}
.x12{left:674.693333pt;}
}




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